/* ================================================================================ iphone URLバーを隠す ================================================================================ */ window.onload = function() { setTimeout(function(){window.scrollTo(0, 1);}, 100); } /* ================================================================================ メニュー Toggle ================================================================================ */ $(document).ready(function(){ /* $(".p_menu-list").each(function(){ var imgSwitch = $("img.p_open", $(this)); var openList = $(".p_open-list", $(this)); $(imgSwitch).toggle( function () { $(openList).css("display", "block") $(this).attr("src", $(this).attr("src").replace("_plus", "_minus")); }, function () { $(openList).css("display", "none") $(this).attr("src", $(this).attr("src").replace("_minus", "_plus")); } ); }); */ });