Quote:
Originally Posted by Red Sky
I like it so far. One annoying thing I noticed is that you disabled right clicking. The only reason I care is because I like to right-click links and open them in new tabs.
|
Right-clicking works for me. I think it's the result of this script:
Code:
<script language=JavaScript>
<!--
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>
There's no other script on the page, so if you are using FF, you can get NoScript to block all scripts, and if you're in Opera, well, it already works, but if it didn't you can specifically block scripts per site in the options. Don't know what you can do as far as script blocking in other browsers.