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.