mouse show hide div


/ Published in: jQuery
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $('a.exploreClub').hover(
  2. function() {
  3. $(this).find('.exploreInfo').show();
  4. },
  5. function() {
  6. $(this).find('.exploreInfo').hide();
  7. }
  8. );

Report this snippet


Comments


You need to login to view comments.