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
우리가 해야 할 큰 일은 먼데 있는 불명확한 것이 아니라 아주 가까이 있는 확실한 것이다. (T.칼라일)