i have say five divs with the layout as in the following code..
//Div one
<div class="container">
<div class="hide">
<button class="hide" value="hide" />
</div>
</div>
//Div Two
<div class="container">
<div class="hide">
<button class="hide" value="hide" />
</div>
</div>
//Div Three
< div class="container">
<div class="hide">
<button class="hide" value="hide" />
</div>
</div>
now say i click the hide button in the second div, i want to hide the second div.. That is i want to hide the div corresponding to the button click.. How to do that via jquery only???
i tried using the 'this' keyword through jquery but that would hide all the containers and not just one. please help me