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.

Using media queries, my main nav is hidden, and a navigation toggle button appears when

@media screen and (max-width: 740px) { /* hide nav, show toggle button */ }

This is working fine.

In addition to this, if the window has been made smaller, then the menu toggled to 'hide', and then the window maximised, I need the nav to re-appear.

Similarly, when the window is made smaller again, it needs to hide again.

I did this using jQuery - also working fine:

$(window).resize(function() {
    if ($(window).width() > 740) {
        $("#main-nav").show();
    }
    else {
        $("#main-nav").hide();
    }
});

For some reason, the else statement above, while working fine on a desktop window under 740px, is preventing the toggle button from working on iPhone.

$('#nav-toggle').click(function() {
    $('#main-nav').slideToggle();
});

Any thoughts? It's as if the slideToggle is causing the window resize function to fire on iPhone.

Hope this makes sense - any help appreciated! Many thanks in advance.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.