lunes, 20 de julio de 2009

Deshabilitar el boton derecho del raton

Con este código javascript podrás deshabilitar el boton derecho del raton, aunque no lo recomiendo ya que siempre alguien un poco entendido podrá realizar lo que deseen sin ese boton.

<script language="javascript">
var mensaje = "El boton derecho esta deshabilitado en http://dudasweb.blogspot.com";
function RClick(boton){
if (document.layers && boton.which == 3)
{
alert(mensaje);
return false;
}
if (document.all && event.button == 2 event.button == 3)
{
alert(mensaje);
return false;
}
}
document.onmousedown = RClick;
</script>


También mirando por la web he encontrado esta forma para deshabilitarlo:

<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false">


No hay comentarios:

Publicar un comentario