Skip to content

Instantly share code, notes, and snippets.

@dompascal
Created November 23, 2013 11:01
Show Gist options
  • Save dompascal/7613273 to your computer and use it in GitHub Desktop.
Save dompascal/7613273 to your computer and use it in GitHub Desktop.
JS - shop thumbs header/details hover toggle
// shop thumbs header/details hover toggle
$('ul.products li').hover(function(){
$('h3',this).slideDown(300);
$('.details',this).fadeIn(500);
}, function(){
$('h3',this).slideUp(300);
$('.details',this).fadeOut(500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment