Код: Выделить всё
$(document).ready(function(){ $("#menu").click(function() { $( ".nav" ).fadeToggle("slow", "linear");});
$(window).resize(function() { if ($(window).width() < 768) { $('.nav').css("display", "none");} else {$('.nav').css("display", "inline-block");}});});
Код: Выделить всё
$(document).click(function(event) {if(!$(event.target).is('#menu')) {$(".nav").hide();}});
а здесь УДАЛЕНО репозиторий
Подробнее здесь: https://stackoverflow.com/questions/402 ... and-toggle