#6562 closed bug (fixed)
using .attr() to set the 'target' attribute, with a node that has ID of 'target'
Reported by: | cloakedninjas | Owned by: | Timmy Willison |
---|---|---|---|
Priority: | blocker | Milestone: | 1.6 |
Component: | attributes | Version: | git |
Keywords: | form dom | Cc: | |
Blocked by: | Blocking: |
Description
Code to replicate is attached.
Essentially, if you have a Dom node with the ID of 'target' and you try and set a target, it fails.
If you try to just get the target attribute when there isn't one, the 'target' node is returned. If the target attribute is present, then the getter works.
If you comment out the <input> element, the code runs fine
Attachments (1)
Change History (10)
Changed 13 years ago by
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
Actually using:
elem.getAttributeNode( name ).nodeValue = value;
might be better than:
elem[ name ] = value;
to avoid cases where an element id/name can be a attribute of the same or another element. Seems to work in all browsers too.
Edit:
jQuery already uses elem.getAttributeNode( name ).nodeValue for getting an attribute value when an element is a form, don't see why it can't use it for setting too.
comment:3 Changed 13 years ago by
Keywords: | form dom added |
---|---|
Priority: | → undecided |
This needs to be correlated with other bugs related to the DOM providing access to form elements as direct properties of the form object.
comment:4 Changed 13 years ago by
Keywords: | needsreview added |
---|
comment:6 Changed 13 years ago by
One way to is to check whether the element being accessed is a form.
In 1.5.1 something like this is done for getting an attribute, so it might be good to use for setting.
I changed from line 2062 (ish) from:
if ( value === null ) { if ( elem.nodeType === 1 ) { elem.removeAttribute( name ); } } else { elem[ name ] = value; }
to:
if ( value === null ) { if ( elem.nodeType === 1 ) { elem.removeAttribute( name ); } } else { if ( set && jQuery.nodeName( elem, "form" ) ) { elem.setAttribute( name, value ); } else { elem[ name ] = value; } }
And it works fine. Only tested in Firefox so needs to be tested in other browsers but I believe it should work.
comment:8 Changed 13 years ago by
Keywords: | needsreview removed |
---|---|
Milestone: | → 1.6 |
Owner: | set to Timmy Willison |
Priority: | undecided → blocker |
Status: | new → assigned |
Version: | 1.4.2 → git |
comment:9 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
From what I've seen, internally jQuery is doing main_form.target (elem[ name ]) to work in all browsers, which is why the node 'target' is accessed and not the attribute.
I've found that if the type of main_form.target is not a string ( so in this case it would be a object ) you could use a different method.
I found the best way ( albeit with a for loop ) that works in all major browsers was to change line 1704 ( needs simplifying a little bit ) to:
So if the attribute it tries to access is a Dom object and not a string it uses a standard way that will work.
I've used a for loop to access the attributes as setAttribute does not work in all browsers.