What's wrong with my jQuery function?

I’m trying to show all LIs that are hidden inside the parent UL when clicking on a link inside of an LI.

Structure:

<ul id=“stuff”>
<li>something</li>
<li>something else</li>
<li><a href=“#” class=“link”>link</a></li>
</ul>

$(".link", "#stuff").bind("click", function(e){
	$(this).parent("ul").children("li").show();
});

The way you coded it didn’t seem right to be so i tweaked your code a little bit and it works now

$(".link").bind("click", function(e){
    $("#stuff").children("li").show();
});