jQuery(document).ready(function($) {
$('.menu-item-has-children > a').on('click touchstart', function(e) {
var submenu = $(this).siblings('.sub-menu');
// If submenu is visible, follow the link
if (submenu.is(':visible')) {
window.location.href = $(this).attr('href');
} else {
e.preventDefault(); // Prevent link from being followed on the first click
submenu.slideToggle(); // Toggle submenu visibility
}
});
});