Skip to content

Instantly share code, notes, and snippets.

@jim-at-jibba
Created August 5, 2014 02:19
Show Gist options
  • Save jim-at-jibba/48a6f7c982145e8f253e to your computer and use it in GitHub Desktop.
Save jim-at-jibba/48a6f7c982145e8f253e to your computer and use it in GitHub Desktop.
Disable Dropdown parent
var $j = jQuery.noConflict();
$j(document).ready(function () {
$j("li:has(ul)").hover(function () {
$j(this).children("a").click(function () {
return false;
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment