impide seleccionar el documento
Como puedes ver, esta linea de texto no puede ser seleccionada
CODIGO
<html>
<head>
<title>Impide seleccionar el contenido de una pagina</title>
<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>
</head>
<body>
<p>Como puedes ver, esta linea de texto no puede ser seleccionada</p>
</body>
</html>
<html>
<head>
<title>Impide seleccionar el contenido de una pagina</title>
<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>
</head>
<body>
<p>Como puedes ver, esta linea de texto no puede ser seleccionada</p>
</body>
</html>