[dba-Tech] Unable to copy web content

Stuart McLachlan stuart at lexacorp.com.pg
Thu May 8 18:28:05 CDT 2008


Several ways:

=====================================================
1.
A transparent overlay of the content?
=====================================================
2.
<script language=JavaScript>
<!--

//Disable right mouse click Script
//By Maximus (maximus at nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// --> 
</script>

===================================================
3.
a script to clear the clipboard regularly on a timer?
===================================================
4.
One of these:
http://www.freedownloadmanager.org/downloads/html_prevent_click_info/ ?
===================================================


On 8 May 2008 at 11:54, Susan Harkins wrote:

> Occasionally I run into a web site that doesn't let me copy content to the Clipboard or save an image. How do they do that? 
> 
> Susan H. 
> _______________________________________________
> dba-Tech mailing list
> dba-Tech at databaseadvisors.com
> http://databaseadvisors.com/mailman/listinfo/dba-tech
> Website: http://www.databaseadvisors.com





More information about the dba-Tech mailing list