Computer Forums

Computer Forums (http://www.geekboards.com/forums/index.php)
-   Building Websites (http://www.geekboards.com/forums/forumdisplay.php?f=3)
-   -   How disable copy paste for web content,image on Opera Browser? JAVA Script Code? (http://www.geekboards.com/forums/showthread.php?t=15572)

lenavip 10-23-2010 02:49 PM

How disable copy paste for web content,image on Opera Browser? JAVA Script Code?
 
JAVA Script Code?

samlko 11-01-2010 05:16 AM

JavaScript code will be the best option to disable copy & paste for web content, image on opera browser...and it can be used for any browser as the javascript code is the best option when there is a issue of browser compatibility...

lenavip 11-01-2010 08:14 AM

How do I make the code work for Opera ?
...OnLoad ="mousedef();...
function mousedef(){
var message="";
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!docum ent.all)) {
if (e.which==2||e.which==3) {
(message);
return false;}}}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS;
}else{
document.onmouseup=clickNS;
document.oncontextmenu=clickIE;
}
document.oncontextmenu=new Function("return false");
}


All times are GMT -5. The time now is 01:40 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
HTML Help provided by HTML Help Central.