Skip to content

Instantly share code, notes, and snippets.

@ibndawood
Last active May 29, 2019 09:15
Show Gist options
  • Save ibndawood/228cedd1e897ecbfe53d2f339672b4ad to your computer and use it in GitHub Desktop.
Save ibndawood/228cedd1e897ecbfe53d2f339672b4ad to your computer and use it in GitHub Desktop.
Electro - Clickable parent menu
jQuery(document).ready(function($){
if (jQuery(window).width() >= 1025){
$(".departments-menu-v2 .dropdown-toggle, .departments-menu-v2 li.dropdown-submenu > a").click(function () {
var addressValue = $(this).attr("href");
location.href=addressValue;
console.log(addressValue );
});
};
});
@jurref
Copy link

jurref commented Mar 27, 2018

Hello,

How and where do I add this in wordpress ?

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment