Home › Forums › JavaScript › click event › Reply To: click event
February 2, 2017 at 5:37 am
#250860
Participant
How about this?
$('#dropList').click(function(event) {
if ($(window).width() > 768) return false;
event.stopPropagation();
$('.dropListMenu').slideToggle();
});