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
Post a Comment