Opened 12 years ago
Closed 12 years ago
#9252 closed bug (worksforme)
Internet Explorer 9.0 crashes when removing an attribute that contains ":", if it's not set already
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | attributes | Version: | 1.6 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Internet Explorer crashes (page crashes completely, and is reloaded) if you use jQuery.removeAttr('test:attr'); if the attribute test:attr is not set. This only happens with attributes that contains ":". This is probably an internet explorer bug, but there's an easy fix to prevent this from happening since it's pretty bad, so it could be implemented in the jQuery removeAttr function.
if(typeof jQuery(this).attr(value) !== 'undefined' && jQuery(this).attr(value) !== false) {
return;
}
You get the just of it..
Change History (1)
comment:1 Changed 12 years ago by
Component: | unfiled → attributes |
---|---|
Priority: | undecided → low |
Resolution: | → worksforme |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
No crash or error happens for me. http://jsfiddle.net/timmywil/R3U8B/