Forums

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

Home Forums JavaScript Parent menu trigger button Reply To: Parent menu trigger button

#277944
chris_2080
Participant

@vulkanus

you can combine it:

$('ul#primary-menu > li.menu-item-has-children').one('click', function(e) {
    e.preventDefault();
    return false;
}).on('click', function(e) {
    return false;
}).dblclick(function(e) {
    window.open($(this).children().attr('href'), '_self');
    return false;
});