Hi again, I can't find the way to do a very simple thing: I have some <li> with a class like the following:
<li class="picture 62033">lala</li>
<li class="video 41463">lala</li>
<li class="video 53553">lala</li>
<li class="video 53554">lala</li>
<li class="video 51483">lala</li>
<li class="video 36715">lala</li>
displayed on a page where I also have this div (the number changes from page to page)
<div id="nodenid">51483</div>
I just want to .hide() the <li> with that ID. Something like this
$(".mypage").find('li').hide();
but that, of course, hides all of them :)
How can I get the value from the #nodenid and use it to hide the matching <li>? Thanks