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.

This is my code:

HTML

<div class="popup">
    <div class="popup-frame">
        <div class="popup-cont">
            <div class="inner"></div>
        </div>
    </div>
    <div class="bg"></div>
</div>

JS

s.popup = {
    set : function(e){
        if(e)   $.get(s.v+e+'.php', function(e){$('.popup .inner').append(e).parent().parent().parent().show()})
        else    $('.popup .inner').empty().parent().parent().parent().hide();
    }
}

Idea is: if(e)

  1. append $.get response to .popup .inner
  2. show .popup

else

  1. empty .popup .inner
  2. hide .popup

Question

Is there better way to select .popup than .parent().parent().parent()

Additional: Im aware that this could be done like this:

$('.popup .inner').empty(); $('.popup').hide();
share|improve this question

1 Answer

up vote 5 down vote accepted

You can use closest method to select the closest parent.

Check : http://api.jquery.com/closest/

Replace

$('.popup .inner').empty().parent().parent().parent().hide();

with

$('.popup .inner').empty().closest('.popup').hide();

share|improve this answer
.closest()* ;) – Ktash Nov 21 '11 at 4:37
@Ktash: Fixed the typo. Thx – Chandu Nov 21 '11 at 4:38
Can't you rather do $('.popup .inner').empty().parent('.popup').hide(); for the safty it provides given that there might exist more popups? – Alxandr Nov 21 '11 at 4:40
1  
My bad, that was mootools, not jQuery, closest only goes up the tree. – Alxandr Nov 21 '11 at 4:42
1  
+1, thanks for quick help! – enloz Nov 21 '11 at 4:48
show 2 more comments

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.