Skip to content

Instantly share code, notes, and snippets.

@Shadowfiend
Created July 18, 2011 14:45
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 Shadowfiend/1089719 to your computer and use it in GitHub Desktop.
Save Shadowfiend/1089719 to your computer and use it in GitHub Desktop.
JS to set up popup with arrow.
function loadTooltip(tooltipHtml) {
var $tooltip = $(tooltipHtml);
$tooltip.append('<div class="arrow" />');
$('body').append($tooltip.hide());
$tooltip.fadeIn();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment