Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript click event Reply To: click event

#250860
Shikkediel
Participant

How about this?

$('#dropList').click(function(event) {

  if ($(window).width() > 768) return false;

  event.stopPropagation();
  $('.dropListMenu').slideToggle();
});