For Answers, see/post comments

disable copy, paste, printscreen on client browser

Hi,
You could disable the contextmenu like this
<body oncontextmenu="event.cancelBubble=true; event.returnValue=false; return false;">
[...]
or you can simple prevent the user from select content text
<body onselectstart="return false">
[...]
or do this in script
document.onselectstart=new Function ("return false");
document.oncontextmenu=new Function ("event.cancelBubble=true;event.returnValue=false;return false;");

But preventing the user from printscreen ... i think there's no solution.

No comments: