First .. the functunality is okay, but there are probably some design issues in my code.
The structure looks like this:
ajax : upload file and return <input type="radio" name="sheet"...> for each worksheet
.done(...){
$('#sheet).change(function(){
....
ajax : return columns to worksheet <input type="checkbox" name="column"...>
.done(..){
$('#column).change(function(){
....
ajax : ...
.done...
I think you guys recognize the structure of my code. Honestly it looks terrible :(
Is it possible to observe the state of a NEWLY generated input element from outside (for example from another observeInputState.js)?
All my tries end up with no reaction from the system, i guess this is because the observeInputState.js in loaded before the new input element is generated...
Thanks for advice,
Matze