disabling right click:
<script language=JavaScript>
<!--
//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.co
var message="Function Disabled!";
//////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Eve
document.onmousedown=click
}
else if (document.all&&!document.g
document.onmousedown=click
}
document.oncontextmenu=new
// -->
</script>
CJ
Main Topics
Browse All Topics





by: MausePosted on 2003-09-12 at 03:01:35ID: 9344558
I don't think thats possible
what you can do is make a CSS (media print) like this:
<style media="print">
body {
display : none;
}
</style>
This will hide everything on the page when the page is print from file or right-click print
This will not work on print screen!!!
Mause