Skip to content

Instantly share code, notes, and snippets.

@ibndawood
Forked from farookibrahim/script.js
Created January 29, 2018 07:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ibndawood/b97732997024475f8db590875c4b9c0f to your computer and use it in GitHub Desktop.
Save ibndawood/b97732997024475f8db590875c4b9c0f to your computer and use it in GitHub Desktop.
Electro - Make parent menu clickable for submenu
jQuery(document).ready(function($){
if (jQuery(window).width() >= 1025){
$('li.dropdown-submenu > a').on('click', function() {
var addressValue = $(this).attr("href");
location.href=addressValue;
});
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment