Skip to content

Instantly share code, notes, and snippets.

@mattborn
Created August 3, 2010 17:42
Show Gist options
  • Save mattborn/506797 to your computer and use it in GitHub Desktop.
Save mattborn/506797 to your computer and use it in GitHub Desktop.
/* Tooltips */
$('h3 a').hover(function(){
if($(this).attr('title')){
$(this).append($('<div class="tooltip">'+$(this).attr('title')+'</div>'));
}
}, function(){
$(this).find('div').remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment