Skip to content

Instantly share code, notes, and snippets.

@tekmaven
Last active August 29, 2015 13:58
Show Gist options
  • Save tekmaven/10433868 to your computer and use it in GitHub Desktop.
Save tekmaven/10433868 to your computer and use it in GitHub Desktop.
Show all tooltips on Seamless menus
var tooltips = document.querySelectorAll("[id$='Tooltip']");
for(var i = 0; i < tooltips.length; i++) {
tooltips[i].style.position = "inherit";
tooltips[i].style.display = "inherit";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment