Html & Script

오른쪽 마우스 클릭막기, 우클릭금지

페이지 정보

본문

<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false">

....

</body>

 

<div oncontextmenu="return false" onselectstart="return false" ondragstart="return false"> 

....

</div>

 

 

$(document).ready(function(){  

    $(document).on("contextmenu dragstart selectstart",function(e){

        return false;

    });

});


관련자료

등록된 댓글이 없습니다.
Today's proverb
캄캄한 세계 속에 살고 있다는 생각을 해본 적이 없다. 그것은 내 마음속에 언제나 태양이 떠 있기 때문이다. (헬렌 켈러)