Is there a way to create a jQuery click event to trigger the opening of a mega menu? I’ve searched the internet and did not find much. I would like to make a particular menu tab toggle open when a click event happens on a picture within the website.
$(document).ready(function () {
$('#image1').click(function (){//img id, can get to work with an alert.
$('#mega-menu-item-86').show();
});
});