Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

3 Answers

up vote 2 down vote accepted
$('button.hide').on('click', function() {
   $(this).closest('.container').hide()
});

I specified button.hide instead of .hide as selector, because you have more different elements with that classname

See closest() usage on jQuery docs

Get the first element that matches the selector, beginning at the current element and progressing up through the DOM tree.

share|improve this answer
+1, beat me to it! – adeneo Aug 31 '12 at 7:58
how does closest work please explain a bit – user1577588 Aug 31 '12 at 8:00
It finds the closest parent with the given class. – adeneo Aug 31 '12 at 8:00

Use the jQuery .closest() method to traverse up the DOM tree to target the <div>. Then you can trigger the hide on the div.

$('button.hide').click(function() {
    $(this).closest('.container').hide();
});

This, of course, is done on DOM ready: $(document).ready(function() { /*...*/ });

share|improve this answer

Correct --> this solution is very inferior to using Closest. I didn't know about that function when I posted this.

Consider this code deprecated!

You don't need to create a hide class. What I would do is the following (This is untested):

function hideDiv(id){
    $("#"+id).toggle();
    // Also available is:
    // $("#"+id).hide();
    // $("#"+id).show();
}

<div class="container" id="container1" onclick="hideDiv('contianer1')">
</div>
<div class="container" id="container2" onclick="hideDiv('contianer2')">
</div>
<div class="container" id="container3" onclick="hideDiv('contianer3')">
</div>
share|improve this answer
see my problem is that in the code i showed the three container div in code.. Actually i am running an iteraive loop that will produce the div columns.. I dont know how many will be there.. So now how shold i do.. THE NUMBER OF DIV DISPLAYED ARE PRODUCED DYNAMICALLY – user1577588 Aug 31 '12 at 8:06
inline handlers are awful and they go against the basic and good principles of layer separation (content and behaviour) – Fabrizio Calderan Aug 31 '12 at 8:17
Good Point. Thanks for teaching me about the closest function. – ajon Aug 31 '12 at 8:34
Are you producing the code dynamically using php? if so it would be trivial to add a variable listing how many containers you have created. and append the number to script where appropriate. – ajon Aug 31 '12 at 8:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.