$(function () { function showToast(selector, message) { var $toast = $(selector); $toast.text(message).addClass("show"); setTimeout(function () { $toast.removeClass("show"); }, 1800); } $("#applyButton").on("click", function () { showToast("#detailToast", "応募ボタンの動作サンプルです。"); }); $("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 ); } }); // 都道府県一覧ページの表示切替(縦リスト) // 東京都専用一覧(トップからの遷移時も東京で固定) if ($("#prefectureList").length) { $("#prefHeading").text("東京都の求人一覧"); } });