SunderBar

IDOOGLE | TU MUNDO MAS ACTIVO!

Proteje tu web

BLoqueo boton derecho del mouse:

<html>
<head>
<title>Bloqueo del Botón derecho del mouse</title>
</head>
<body>
<script LANGUAGE="JavaScript1.1">

function derecha(e) {
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
alert('no me copies')
return false;
}

else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2)){
alert('AQUI LO QUE QUIERE QUE DIGA EL MENSAJE')
}
}
document.onmousedown=derecha
</script>
<p align='center'>Bloqueo del Botón derecho del mouse</p>
</body>

</html>


Bloquea boton izquierdo:

<!-- Botón izquierdo del mouse -->  <script LANGUAGE="Javascript1.1">

<!-- Adaptado por Tk: Compatible con IE y NS -->

function izquierda(e) {
if (navigator.appName == 'Netscape' && (e.which == 1 || e.which == 2)){
alert('Botón izquierdo inhabilitado')
return false;
}

else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 1)){
alert('AQUÍ TU MENSAJE')
}
}
document.onmousedown=izquierda
</script>


Bloquea seleccion (otra forma de plagio )

<script type="text/javascript">
//form tags to omit in NS6+:
//http://eking.in
var omitformtags=["input", "textarea", "select"]

omitformtags=omitformtags.join("|")

function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}

</script>
Eres el visitante numero 44882 visitantes (101272 clics a subpáginas) ¡Aqui en esta página!
www.idoogle.es.tl | Todos los Derechos Reservados © 2011 | Adaptado por DavidFrançois
Este sitio web fue creado de forma gratuita con PaginaWebGratis.es. ¿Quieres también tu sitio web propio?
Registrarse gratis