Im using jquery form plugin (http://jquery.malsup.com/form) and on IE 8 and 9 its not working. IE denies access to form.submit();
Example on author page is ok, my not. Do I need additional configuration for IE?
$(parent + ' form').ajaxForm({
success: function(data) {
$("#cont").html(data);
},
beforeSubmit: function(arr, f, o) {
o.dataType = "html";
},
iframeSrc: urlTab['upload']
});
It's not a server issue, request it not made. No cross domain and other common problems.