Changes between Initial Version and Version 1 of Ticket #6262, comment 6
- Timestamp:
- Sep 8, 2011, 2:21:53 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6262, comment 6
initial v1 1 1 I've looked at this but I don't see an easy way to fix it. One solution is to have IE's `submit` special-event handler check for the existence of bound events via `jQuery.data(event.target.form, "events").submit` and then set a flag to defer the bubbling of the delegated `submit` event until after the bound events run. That requires an additional "post-handle()-run" special events hook and I don't know that it's worth all the work and code size for an edge case on old IE browsers. 2 3 See also #7061.