$(function () { bindAll(); }); function bindAll() { $(".recruit-part").on("mouseover", function () { $(this).find(".title").attr("style", "color:#1b78cf"); }); $(".recruit-part").on("mouseout", function () { $(this).find(".title").attr("style","color:#000"); }); }