There is a markup:
<form method="POST" id="add_rule_form"></form> <table class="list issues" style="margin-top: 20px"> <tbody id="table_notification_body"> <tr id="new_rule_row" class="hascontextmenu odd "><td class="number"><input type="text" name="sequence" id="sequence" value="613" form="add_rule_form" onkeyup="localStorage.setItem('sequence_is_change', 1);"></td><td class="project"><span class="jump-box-arrow"></span><select name="project_quick_jump_box" id="project_quick_jump_box" form="add_rule_form"><option value="-1">Выбрать проект...</option></tr> </tbody> </table> Using jQuery, I'm trying to serialize a form:
var data = $("#add_rule_form").serialize().split("&"); As a result, only this is in data :
[ 0: "", length: 1 ] And this happens only on IE9, in other browsers everything is fine. How can I fix this problem?
formattribute, but as far as I understand it is not supported in IE - S.Ivanov