Modify ↓
Ticket #8740 (closed bug: duplicate)
Has Attribute Selector fails on empty attributes on ie6/ie7/ff3.0
| Reported by: | gabor@… | Owned by: | |
|---|---|---|---|
| Priority: | high | Milestone: | 1.next |
| Component: | selector | Version: | 1.5.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
when i have an element with an attribute without a value, the has-attribute-selector in jquery should match that element. it works on newer browsers, but it does not work on internet explorer 6, internet explorer 7 and on firefox 3.0.
example:
<div data-thing="">text</div>
<script>alert($('div[data-thing]').length);</script>
(also on jsfiddle: http://jsfiddle.net/pNjwe/2/)
it shows 1 on newer browsers, and 0 on the mentioned browsers.
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Confirmed. http://jsfiddle.net/timmywil/pNjwe/4/