Skip to content

Instantly share code, notes, and snippets.

@felixhageloh
Created July 13, 2011 10:30
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 felixhageloh/1080060 to your computer and use it in GitHub Desktop.
Save felixhageloh/1080060 to your computer and use it in GitHub Desktop.
function showTooltip(tooltip) {
tooltip = $(tooltip);
tooltip.setStyle({zIndex: -1});
tooltip.show();
tooltip.setStyle({top: "-"+(tooltip.offsetHeight)+"px"});
tooltip.setStyle({zIndex: 100});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment