Skip to content

Instantly share code, notes, and snippets.

@farookibrahim
Created September 26, 2017 07:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save farookibrahim/71a35f0ac577e47150df50f2801a54e4 to your computer and use it in GitHub Desktop.
Save farookibrahim/71a35f0ac577e47150df50f2801a54e4 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