Skip to content

Instantly share code, notes, and snippets.

@ewillhite
Created May 10, 2013 14:47
Show Gist options
  • Save ewillhite/5554865 to your computer and use it in GitHub Desktop.
Save ewillhite/5554865 to your computer and use it in GitHub Desktop.
Simple tooltip
// News Hover
$('.view-id-news .views-field-title a').hoverIntent(function() {
var body = $(this).parents('li').children('.views-field-body');
bodyHeight = -(body.height() + 22);
body.css('top', bodyHeight);
body.show();
}, function() {
$(this).parents('li').children('.views-field-body').hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment