Opened 15 years ago
Closed 13 years ago
#2401 closed bug (invalid)
removeAttr does not working in IE6
Reported by: | gsobrinho | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.2.4 |
Component: | plugin | Version: | 1.2.3 |
Keywords: | attr, removeAttr | Cc: | |
Blocked by: | Blocking: |
Description
Hi,
I'm developing an plugin and tryed to use similar code:
return this.each(function() { $(this).removeAttr('alt'); }
Its working in FF2, but not in IE6. The broswer dont show errors in JS code. The attr is not removed!
If i use:
return this.each(function() { $(this).attr('alt', ''); }
This "remove" the attr and work in both browsers. Check this please...
Note: See
TracTickets for help on using
tickets.
Please reopen with a complete test case including code and html.