$(function () { // 求人数0件の都道府県カードと、すべて0件の地方ブロックを非表示にする $(".pref-card.disabled").parent().hide(); $(".pref-region-block").each(function () { if ($(this).find(".pref-card:not(.disabled)").length === 0) { $(this).hide(); } }); $("a[href^='#']").on("click", function (event) { var targetId = $(this).attr("href"); if (targetId.length > 1 && $(targetId).length) { event.preventDefault(); $("html, body").animate( { scrollTop: $(targetId).offset().top - 10 }, 500 ); } }); });