este es el codigo
bloqueo del boton derecho con mensaje (recomendado)
Código:
<SCRIPT>if (document.all) document.body.onmousedown=new Function("if (event.button==2||event.button==3) alert('Tu mensaje aquí')") </SCRIPT>
bloque del boton derecho sin mensaje (recomendado)
Código:
<script language="Javascript">
<!-- Begin
document.oncontextmenu = function(){return false}
// End -->
</script>
bloqueo del boton derecho y teclado
Código:
<script language="JavaScript">
function click() {
if (event.button==2) {
alert(' tu mensaje aqui ');
}
}
function keypresed() {
alert('Teclado Desabilitado');
}
document.onkeydown=keypresed;
document.onmousedown=click;
</script>
no permite el boton derecho y penaliza con 10 clicks
Código:
<script language="Javascript">
zaehler=0;
function right(e) {
if (navigator.appName == 'Netscape'){
if (e.which == 3 || e.which == 2){
alert("Aqui no puedes utilizar el botón derecho del mouse");
for(i=0;i!=zaehler;i++)alert("Ya te avisé, te penalizaré con \n "+(zaehler-i)+"\n clicks.");
zaehler+=10;
alert("¡La proxima vez que lo hagas será peor!");
return false;}}
if (navigator.appName == 'Microsoft Internet Explorer'){
if (event.button == 2 || event.button == 3){
alert("Aqui no puedes utilizar el botón derecho del mouse");
for(i=0;i!=zaehler;i++)alert("Ya te avisé, te penalizaré con \n "+(zaehler-i)+"\n clicks.");
zaehler+=10;
alert("¡AQUI MENSAJE");
return false;}}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
// --></script>
bloqueo del boton izquierdo
Código:
<SCRIPT>if (document.all) document.body.onmousedown=new Function("if (event.button==1||event.button==3) alert('Tu mensaje aquí')") </SCRIPT>
bloqueo de ambos botones del raton
Código:
<SCRIPT>if (document.all) document.body.onmousedown=new Function("if (event.button==2||event.button==1) alert('Tu mensaje aquí')") </SCRIPT>
fuente: www.javidj.foroactivo.com (ese es el ofro donde aprendi lo basico de html xdd... JaviDj se podria decir que es el heroe de ese foro como jorgens xdd ojo ambo son grande xD)
Marcadores