Bug Tracker

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: aertmann@… 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 Timmy Willison

Component: unfiledattributes
Priority: undecidedlow
Resolution: worksforme
Status: newclosed

No crash or error happens for me. http://jsfiddle.net/timmywil/R3U8B/

Note: See TracTickets for help on using tickets.