Return to Snippet

Revision: 23920
at February 16, 2010 15:58 by vagrantradio


Initial Code
//Image hover functions
 $("#bot_left").hover(function () {
      $("#bot_left_overlay").fadeIn("slow");
 }, 
 function () {
      $("#bot_left_overlay").fadeOut("slow");
 });

Initial URL


Initial Description
Will fade in and fade out on hover of element

Initial Title
JQUERY HOVER TOGGLE

Initial Tags
jquery

Initial Language
jQuery