Jquery-TableDnd + Form.submit() -


i´m using isocra´s tablednd jquery plugin. works fine far. want submit form in ondrop function like

$("#mytable").tablednd({   ondrop: function(table, row) {        var input = document.createelement('input');      input.name ='order';      input.value = $.tablednd.serialize();        input.type= 'hidden';      $("#myformular").append(input);               $("#myformular").submit()      }  });     

but form isn´t submit. has idea problem?

the id of form correct.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -