JQUERY HOVER TOGGLE


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

Will fade in and fade out on hover of element


Copy this code and paste it in your HTML
  1. //Image hover functions
  2. $("#bot_left").hover(function () {
  3. $("#bot_left_overlay").fadeIn("slow");
  4. },
  5. function () {
  6. $("#bot_left_overlay").fadeOut("slow");
  7. });

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.