Skip to content

Instantly share code, notes, and snippets.

@scripting
Last active November 16, 2015 18:02
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 scripting/70e851dbcd9c043e0085 to your computer and use it in GitHub Desktop.
Save scripting/70e851dbcd9c043e0085 to your computer and use it in GitHub Desktop.
function nukeDisabledMenuItems () {
$(".dropdown-menu li").each (function () {
if ($(this).hasClass ("disabled")) {
$(this).children ().first ().attr ("onclick", ""); //nuke the command
}
});
}
@scripting
Copy link
Author

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