#6139 closed bug (invalid)
Issue with removing size attribute with IE.
Reported by: | gnucki | Owned by: | |
---|---|---|---|
Priority: | Milestone: | 1.4.2 | |
Component: | attributes | Version: | 1.4.1 |
Keywords: | remove size internet explorer IE | Cc: | [email protected]… |
Blocked by: | Blocking: |
Description
jqObject.attr('size', '1');
alert(jqObject.attr('size')); You can see "1". Everything is ok.
This 2 next lines are ok on Firefox, Safari, Opera and Chrome but fail on IE. jqObject.attr('size', ); jqObject.removeAttr('size');
I replaced with: for (i=0; i < jqObject.get(0).attributes.length; i++) {
if (jqObject.get(0).attributes[i].nodeName == 'size')
jqObject.get(0).attributes[i].nodeValue = ;
} No problem, it's working.
Change History (2)
comment:1 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:2 Changed 12 years ago by
This fiddle could demonstrate the issue: http://jsfiddle.net/greenlaw110/9rdXs/
Please open the fiddle in IE (any version start from 6 to 9beta)
Note: See
TracTickets for help on using
tickets.
Can you reopen with a complete test case? What element does jqObject refer to?