Skip to content

Instantly share code, notes, and snippets.

@Shadowfiend
Created July 18, 2011 14:45
Show Gist options
  • Select an option

  • Save Shadowfiend/1089719 to your computer and use it in GitHub Desktop.

Select an option

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