Delicious LinkedIn Facebook Twitter RSS Feed

Bloquear botón derecho del mouse con mensaje

Poner el siguiente código arriba de </head>:

<script LANGUAGE="JavaScript1.1">
//<![CDATA[
function derecha(e) {
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
alert('Botón derecho bloqueado. http://loseasi.blogspot.com') // texto a cambiar
return false;
}

else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2)){
alert('Botón derecho bloqueado. http://loseasi.blogspot.com') // texto a cambiar
}
}
document.onmousedown=derecha
//]]>
</script>

Cambiar en los 2 lados el texto: Botón derecho bloqueado. http://loseasi.blogspot.com

0 comments:

Post a Comment