Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Forms inside tabs are null in IE 10+ #200

Open
rfsoftware opened this issue Nov 19, 2014 · 0 comments
Open

Forms inside tabs are null in IE 10+ #200

rfsoftware opened this issue Nov 19, 2014 · 0 comments

Comments

@rfsoftware
Copy link

I have some multiple forms in a a easytab tab and in IE10 I can't access this forms, as they are returned as null. So this event code will not work as $(this.form) returns null. With easytabs disabled, all works normal and correct.

$(function() {
  $(".submit_order").click(function(){
    $.ajax({
      type     : "POST",
      cache    : false,
      url      : "AddItem",
      data     : "charset=iso-8859-1&doreload=0&" + $(this.form).serializeLatin(),
      success: ShowFancyBoxSuccess,
      error: ShowFancyBox
    });
    return false;
  });
});

With Firefox/IE9/Chrome everything is fine, but with IE10+ it fails as "this.form" is null. Any idea what is going on here?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant