I have the following menu
<ul>
<li class="button">One</li>
<li class="button">Two</li>
<li class="button">Three</li>
<li class="button">Four</li>
<li class="button">Five</li>
</ul>
I need to hide only the button that I click on, currently my code is hiding all buttons.
$(".button").click(function() {
$(".button").hide( "slow");
});