Home > Article > Web Front-end > Introduction to the usage of hover and the usage of live (mouse hover effect)_jquery
// Product Catalog<br>$(".lm_div_q dd").hover(function( ){ <br>$(this).find("strong").addClass("tj_strong"); <br>$(this).find("strong").next().stop(true,true). slideDown(200); // Display drop-down box <br>}, function(){ <br>$(this).find("strong").removeClass("tj_strong"); <br>$(this).find ("strong").next().stop(true,true).slideUp(200); // Hide drop-down box<br>});