하은양 믿음군 효실맘 호홍홍집s

모바일 웹 뒤로가기 버튼 막기 본문

가벼운 배움/JQuery

모바일 웹 뒤로가기 버튼 막기

호홍홍집 2015. 8. 27. 20:47

출처 : http://ncube.net/10455

3
4
5
6
7
<script>
$(window).bind("pageshow", function(event) {
    if (event.originalEvent.persisted) {
        document.location.reload();
    }
});
</script>

자바스크립트


2
3
4
5
window.onpageshow = function(event) {
    if (event.persisted) {
        document.location.reload();
    }
};


'가벼운 배움 > JQuery' 카테고리의 다른 글

jsTree 이용한 Tree 메뉴처리  (0) 2015.09.17
달력 maxDate 날짜 지정하기.  (0) 2015.08.31
괜찮은 Rolling Banner  (0) 2015.07.06
많이 사용되는 bxSlider의 옵션들  (2) 2015.06.30
간단한 Top Menu 처리하기  (0) 2015.06.08