I've designed a sleek HTML menu with media queries, and integrated a Menu Hook that uses jquery's slideToggle for smaller devices. Everything works perfectly when toggling the menu to show and then maximizing the screen. However, if I hide the menu and then maximize the screen, the menu disappears. To see this in action, try resizing the window and toggling the menu. Here's the jquery code I'm using for the toggle:
$(function(){
$("#toggle").click(function(){
$(".t-m").slideToggle("slow");
});
});
Take a look at the code here.
Thank you in advance.