I have a group of items like this:
<ul>
<li></li>
<li></li>
<li></li>
<li class="special"></li>
</ul>
and I have a jquery variable which is:
item = $('ul li')
how do I select the 'li' with the special class, using the variable. So that I could for example do something like this:
$(<item with special class>).click();