$(function() {
$(".main-list").on("click","a", function (event) {
event.preventDefault();
if($(window).width() > 767){
var id = $(this).attr('href'),
top = $(id).offset().top;
$('body,html').animate({scrollTop: top-50}, 2000);
}
else {
// что вы тут хотите закрыть одному вам известно
}
});
});
|