Opened 13 years ago
Closed 12 years ago
#7161 closed bug (fixed)
Submit event on a form element not unbound properly in IE
Reported by: | gethinw | Owned by: | dmethvin |
---|---|---|---|
Priority: | high | Milestone: | 1.7 |
Component: | event | Version: | 1.4.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Submit events are not unbound fully from form elements in Internet Explorer. Would appear to be because jQuery.event.special.submit.setup (2199 in 1.4.2 source) is only applied if the element in question isn't a form, whereas the teardown function (2222) gets applied regardless, therefore not removing the standard submit event.
Change History (10)
comment:1 Changed 13 years ago by
Component: | unfiled → event |
---|---|
need: | Review → Test Case |
Owner: | set to gethinw |
Status: | new → pending |
comment:2 Changed 13 years ago by
Status: | pending → new |
---|
comment:2 Changed 13 years ago by
OK - found an interesting twist on this while putting together a test case:
Bug is as previously described in http://fiddle.jshell.net/kytmD/2/ - if you 'Bind' then 'Unbind' then submit the form, an error will occur.
However, if the JS is run on load ('$(window).load(...)') rather than onReady ('$(...)') - http://fiddle.jshell.net/kytmD/1/ - the error doesn't occur. This would appear to be a side-effect of the fact that attaching a load event to the window creates an object in $(window).data('events'), the lack of which (at line 1919) causes the error in the other case, but as far as I can tell the handle function (1904) shouldn't be being called at all, so this is a coincidence rather than a fix.
comment:3 follow-up: 4 Changed 13 years ago by
Status: | new → pending |
---|
This ticket has been marked as missing a test case. In an effort to reduce the number of outstanding tickets in the bug tracker, it will be closed automatically in 30 days. In order to prevent this from happening, please provide a working test case. If a test case has already been provided and our records are wrong, please respond to the ticket so that it can be fixed. Thank you!
comment:4 Changed 13 years ago by
Status: | pending → new |
---|
Test case provided in comment:2
Replying to snover:
This ticket has been marked as missing a test case. In an effort to reduce the number of outstanding tickets in the bug tracker, it will be closed automatically in 30 days. In order to prevent this from happening, please provide a working test case. If a test case has already been provided and our records are wrong, please respond to the ticket so that it can be fixed. Thank you!
comment:5 Changed 13 years ago by
Status: | new → open |
---|
comment:7 Changed 12 years ago by
Milestone: | → 1.next |
---|---|
Priority: | undecided → high |
comment:8 Changed 12 years ago by
Milestone: | 1.next → 1.7 |
---|---|
Owner: | changed from gethinw to dmethvin |
Status: | open → assigned |
I think I've fixed this IE8 bug in my 1.7 branch, I'll confirm later this month when it lands.
comment:9 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
This is fixed as a result of the event rewrite in 1.7.
Could you submit a valid test case for us to see where this is breaking?.