The official web hosting company for the BlueVoda Website Builder. You are currently viewing our support forum as a guest which gives you limited (read only) access. By joining our support forum you will be able to ask questions, participate in discussions and receive assistance. Registration is fast and simple. Click Here To Join our support forum today! We look forward to helping you build and publish a fantastic website.
Ok, so I did a search for this topic AFTER I posted -- I'm still learning. I see that it is considered RUDE, and I agree . . . but those are the terms of this particular seller (nice to know that they can be copied anyway ;)
I'll read the thread completely first -- thanks/sorry :)
Let's say that I REALLY want to buy these graphics and she REALLY wantas me to disable the right click function . . . can someone talk me through it in a VERY BASIC Blue Voda way? I don't yet know about Java or anything else fancy ;)
<script language=JavaScript>
var message="Right Click Is Disabled!";
function anti_theft_IE(){
if (event.button==2){
alert(message);
return false;
}
}
function anti_theft_NS(e){
if (document.layers||document.getElementById&&!docume nt.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=anti_theft_NS;
}
else if (document.all&&!document.getElementById){
document.onmousedown=anti_theft_IE;
}
document.oncontextmenu=new Function("alert(message);return false")
</script>
Im not sure how insert it with blue voda (I don't use BV), but from what I understand you can insert it somewhere. Someone who uses that program should come along and can probably help you with that part
Register/Login Script
Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script
Comment