Opened 14 years ago
Closed 13 years ago
#6200 closed bug (fixed)
.live(... broken in 1.4.2 using IE8
Reported by: | mike67 | Owned by: | john |
---|---|---|---|
Priority: | low | Milestone: | 1.4.3 |
Component: | event | Version: | 1.4.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Version 1.4.2 breaks 'live' function in combination with IE8. No problem with 1.4.1. See attached demo.
Attachments (1)
Change History (6)
Changed 14 years ago by
Attachment: | bugdemo.zip added |
---|
comment:1 Changed 14 years ago by
Component: | unfiled → event |
---|---|
Milestone: | 1.4.2 → 1.4.3 |
Owner: | set to john |
Status: | new → assigned |
comment:2 Changed 14 years ago by
I have experienced similar issues in IE6 wiring up a submit event with live (but only in a specific scenario):
$(function() { $("#purchase_form").live("submit", function() { var buy = $(this).find("#purchase_form_buy"); buy.attr("disabled", true); buy.addClass("disabled"); buy.html("<span>processing...</span>"); return true; }); });
further down in the page there is another script block that defines a domready block but does not utilize live at all.
On another page entirely, we use live to wire up submit and there are no issues present in IE 6...
comment:5 Changed 13 years ago by
Milestone: | → 1.4.3 |
---|---|
Priority: | → low |
Resolution: | → fixed |
Status: | assigned → closed |
Fixed. Can be seen with this test case
Note: See
TracTickets for help on using
tickets.
I tested and this happens in IE 6 as well.