Reply To: Menu underline not showing

#2872
livemeshlivemesh
Keymaster

The JS code will look like below in your case –

$('li.menu-item-4455 > a').click(function(e) {
     return false; // prevent default click action from happening!
     e.preventDefault(); // same thing as above
});