$(function(){ $("li.dropdown").hover(function(){ $(this).find("div.dropdown-layer").show(); }, function(){ $(this).find("div.dropdown-layer").hide(); }); $(".quick-start").hover(function() { $(this).find(".code-index-as").show() }, function() { $(this).find(".code-index-as").hide() }) });