MH
Size: a a a
MH
MH
PV
MH
MH
MH
M
$(document).ready(function(){```
if($(window).innerWidth() < 571) {
$('.submenu_there').click(function(){
$(this).children('ul').slideToggle();
});
}
});
$(window).resize(function(){
if($(window).innerWidth() < 571) {
$('.submenu_there').click(function(){
$(this).children('ul').slideToggle();
});
}
})
MH
В
$(document).ready(function(){
$('.submenu_there').click(function(){
if($(window).innerWidth() < 571) { $(this).children('ul').slideToggle();
}
});
});
NW