Fórmulas para evitar que se pueda seleccionar el texto de nuestro blog:
■ Método A
1. Ir a Escritorio - Diseno - Edición HTML - Tildar "Expandir plantillas de Artilugios"
2. Buscar la línea </head> con Ctrl+F
3. Copiar y pegar el siguiente código antes de </head>
<script language='JavaScript'>
//Bloquea textos e imagenes
function bloquear(e){return false}
function desbloquear(){return true}
document.onselectstart=new Function ("return false")
if (window.sidebar){document.onmousedown=bloquear
document.onclick=desbloquear}
</script>
4. Se refuerza el siguiente código buscando el código <body>
y añadiendiendo oncontextmenu='return false'
De forma que quede:
- "Vista Previa". (I)
- Guardar plantilla. (II)
■ Método B
Buscar presionando con Ctrl+F el código: <body>
y entre las etiquetas <body> y </body>
colocar el script:
<script language='JavaScript1.2'>
function disabletext(e){
return false
}
function reEnable(){
return true
}
//if the browser is IE4+
document.onselectstart=new Function ("return false")
//if the browser is NS6
if (window.sidebar){
document.onmousedown=disabletext
document.onclick=reEnable
}
</script>
- Vista Previa" (I)
- Guardar plantilla (II)
■ Método C
Colocar en un gadget Javascipt/HTML el script:
<script language="Javascript">
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
Guardar gadget y ¡listos!.
Atención:
En siguientes entradas se mostrarán más formas de bloqueo.
Publicar un comentario
(-^o^-) (^_-) (#^_^#) (ÖoÖ) (*^o^*) (>_<) ( ̄へ ̄)(;_・) (ô_Ó) (O_O) (ˇ~ˇ) (ToT)(Q____Q) ಠ_ಠ (。◕‿◕) [(--)]ZZzzz
- Si el comentario es anónimo hay muchas posibilidades que no se publique.