Skip to content

Instantly share code, notes, and snippets.

@lvivski
Created September 19, 2011 14:06
Show Gist options
  • Save lvivski/1226565 to your computer and use it in GitHub Desktop.
Save lvivski/1226565 to your computer and use it in GitHub Desktop.
Simple hover for images with links in description
(function ($) {
$('a').hover(function () {
if ($(this).attr('href') != '') {
$('a[href="' + $(this).attr('href') + '"]').addClass('hover')
}
}, function () {
$('a').removeClass('hover')
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment