jQuery
$('.left_ul').find('li')
this will return all the li’s but i need to find the li with the data=”something”
<li>Not me</li>
<li>Not me</li>
<li>Not me</li>
<li>Not me</li>
<li>Not me</li>
<li data='something'>I want this one</li>
<li>Not me</li>
Is there a way to do this easily
1 Answer