Skip to content

Instantly share code, notes, and snippets.

@anastransvelo
Forked from ibndawood/scripts.js
Last active March 20, 2019 19:25
Show Gist options
  • Save anastransvelo/4bd30729d05187dacc9c143580cb5b0d to your computer and use it in GitHub Desktop.
Save anastransvelo/4bd30729d05187dacc9c143580cb5b0d to your computer and use it in GitHub Desktop.
Electro - Clickable parent menu
jQuery(document).ready(function($){
if (jQuery(window).width() >= 1025){
$(".secondary-nav .dropdown-toggle").click(function () {
var addressValue = $(this).attr("href");
location.href=addressValue;
console.log(addressValue );
});
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment