$(function(){ $("#searchCate").focus(function(){ $(this).siblings("label").css("border","1px dotted #333"); }); $("#searchCate").focusout(function(){ $(this).siblings("label").css("border","none"); }); $("#songpalang").focus(function(){ $(this).siblings("label").css("border","1px dotted #333"); }); $("#songpalang").focusout(function(){ $(this).siblings("label").css("border","none"); }); $(".songpa_link1").focus(function(){ $(this).siblings("label.songpa_link1").css("border","1px dotted #333"); }); $(".songpa_link1").focusout(function(){ $(this).siblings("label.songpa_link1").css("border","none"); }); $(".songpa_link2").focus(function(){ $(this).siblings("label.songpa_link2").css("border","1px dotted #333"); }); $(".songpa_link2").focusout(function(){ $(this).siblings("label.songpa_link2").css("border","none"); }); $(".songpa_link3").focus(function(){ $(this).siblings("label.songpa_link3").css("border","1px dotted #333"); }); $(".songpa_link3").focusout(function(){ $(this).siblings("label.songpa_link3").css("border","none"); }); $(".songpa_link4").focus(function(){ $(this).siblings("label.songpa_link4").css("border","1px dotted #333"); }); $(".songpa_link4").focusout(function(){ $(this).siblings("label.songpa_link4").css("border","none"); }); });