$(function() {
    $('.quickNav').live('tap',function(event) {
        if ($(".select_body").is(":hidden")) 
        {
                $(".select_body").show(); 
        } 
        else 
        {
            $(".select_body").hide(); 
        }        
    });
});

This works fine except for once it is visible and you tap again it doesn't go away.

Thoughts?

link|improve this question

0% accept rate
feedback

1 Answer

$('.quickNav').live('tap',function(event) {
    $(".select_body").toggle(); //  toggles the visibility/display of the element.
});

this does the same as the lengthy if/else script

See toggle method documentation in the jQuery API docs.

link|improve this answer
1  
@user550495 need any help? does this work for you? – adardesign Mar 15 '11 at 13:13
feedback

Your Answer

 
or
required, but never shown

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