Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
166
rated 0 times [  173] [ 7]  / answers: 1 / hits: 40748  / 12 Years ago, tue, july 31, 2012, 12:00:00

I understand that I can always iterate down the DOM tree and check every element for a data field and if the value is correct but I would like a cleaner solution. For example



    <div id=theDiv>
<div>
<span data-num=3 ></span>
OTHER HTML
</div>
<div>
<div><span data-num=23></span><div>
OTHER HTML
</div>
<div>
<span data-num=3></span>
OTHER HTML
</div>
</div>


Is there a jQuery one liner to find all spans with data-num=3? I know I can find all spans by



  $(#theDiv).find(span).each(function(e) { ... });


but I would like something like



  $(#theDiv).find(span > data-num=3).each(function(e) { ... });

More From » jquery

 Answers
-27

Use the Attribute Equals Selector



 $(#theDiv span[data-num='3'])


Try it!


[#83936] Monday, July 30, 2012, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
kristinsonjab

Total Points: 364
Total Questions: 98
Total Answers: 98

Location: Christmas Island
Member since Mon, Oct 19, 2020
4 Years ago
kristinsonjab questions
Fri, Mar 4, 22, 00:00, 2 Years ago
Fri, Jan 22, 21, 00:00, 3 Years ago
Fri, Aug 14, 20, 00:00, 4 Years ago
;