/*스크롤 이벤트 */ $(window).scroll(function () { var scroll = $(this).scrollTop(); if (scroll > 100){ $("#header").css({"position":"fixed","z-index":"100","top":"0", "bottom":""}); //bottom속성 제거 } else { $("#header").css({"position":"relative","top":"0", "bottom":""}); //bottom속성 제거 } }); /*스크롤 이벤트 */ /*모바일 상세 tep*/ function mitem_view_spac_tap(a,b){ $.get('get_view_spac.php?tap='+a+'&number='+b, show_spac_tap); } function show_spac_tap(res){ $('#item_view_spac').html(res); } /*모바일 상단 메뉴 리스트 텝*/ function mt_list_tap(a,b){ location.href='/m/'+a+'&page_num='+b; }