Created
May 10, 2013 14:47
-
-
Save ewillhite/5554865 to your computer and use it in GitHub Desktop.
Simple tooltip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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