Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.
jQuery(document).ready(function($) {
// Ensure that clicking on the main Services link takes you to the Services page
$('.menu-item-has-children > a').on('click', function(e) {
var href = $(this).attr('href');
var isDropdown = $(this).hasClass('dropdown-toggle');
// If it’s not a dropdown or if we’re clicking the parent link itself, navigate to the page
if (!isDropdown || href === '#') {
window.location.href = href;
}
// If it's a dropdown, let it open as usual
else {
e.preventDefault(); // Prevents the default dropdown behavior to allow the page to load
window.location.href = href;
}
});
});
A WordPress CommenterNovember 18, 2024
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.