Opened 15 years ago
Closed 15 years ago
#4142 closed bug (fixed)
the selector by attribute has a bug
Reported by: | Do1Win2 | Owned by: | john |
---|---|---|---|
Priority: | major | Milestone: | 1.3.2 |
Component: | selector | Version: | 1.3.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
$('div[name=321]')
as this attribute selector is novalid because of the name attribute
Change History (2)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
What doctype are you using where a div element has a name attribute? If it's an XML document that should work. For (X)HTML documents jQuery uses getElementsByName which the W3C defines here:
http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-71555259