Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
//Non-Touch devices
//Hover expands menu (non default Bootstrap behaviour)
$('html.no-touch li.dropdown').hover(function(e) {
$(this).toggleClass('open');
});
//Non-Touch devices
//Click follows main link (non default Bootstrap behaviour)
$('html.no-touch li.dropdown a.dropdown-toggle').on('click', function(e) {
e.preventDefault();
window.location.href = $(this).attr('href');
})
//Touch devices
//Touch (click) expands menu (default Bootstrap behaviour)
//Touch devices
//Allow touch (click) to follows main link when menu open (non default Bootstrap behaviour)
$('html.touch li.dropdown.open a.dropdown-toggle').on('click', function(e) {
e.preventDefault();
window.location.href = $(this).attr('href');
})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question