/ Published in: jQuery
Will fade in and fade out on hover of element
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//Image hover functions $("#bot_left").hover(function () { $("#bot_left_overlay").fadeIn("slow"); }, function () { $("#bot_left_overlay").fadeOut("slow"); });