Skip to main content

Bug Tracker

Side navigation

#7129 closed bug (worksforme)

Opened October 08, 2010 03:18AM UTC

Closed October 08, 2010 07:05AM UTC

Last modified October 08, 2010 07:20AM UTC

Submit Event "Live" Binding Does Not Work in IE

Reported by: Lucanos Owned by:
Priority: low Milestone:
Component: event Version: 1.4.2
Keywords: form bind live submit ie8 Cc:
Blocked by: Blocking:
Description

Similar issue to Previous Ticket http://dev.jquery.com/ticket/5705.

When tested in IE8 (unable to confirm IE6 or 7), binding a function to the 'submit' event of a form works in FF3.6, but does not work in IE8.

$('#theForm').live('submit',function(){ return false; });

However, binding the function using the standard jQuery submit event works in IE8.

$('#theForm').submit(function(){ return false; });

Attachments (0)
Change History (2)

Changed October 08, 2010 07:05AM UTC by addyosmani comment:1

priority: undecidedlow
resolution: → worksforme
status: newclosed

Recreating your original test case here: http://www.jsfiddle.net/addyosmani/hVQYU/, I've tested the live form submission with IE6, IE7, IE8 and IE9 and all of these were able to correctly bind the event to the form submission without any issues.

Could you please re-submit your ticket with additional information (or a live jsFiddle test that we can investigate further)?.

Thanks.

Changed October 08, 2010 07:20AM UTC by Lucanos comment:2

Just attempted to retest in jsFiddle and was unable to do so. I apologise for taking up your time (I am sure it was failing for me earlier, but, I cannot be positive of the cause).

Thanks for your time.