Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/09/2009, 15:41
Avatar de humanista
humanista
 
Fecha de Ingreso: abril-2005
Mensajes: 878
Antigüedad: 19 años
Puntos: 15
Google indexa si inhabilito copiar texto?

Hola, voy a inhabilitar la opción de copy/paste en mi web para proteger -aunque sea parcialmente- el copiado de los datos.

Mi pregunta es si esto afecta a el robot de google, es decir si impide q google indexe mi web, gracias.

lo protejo así:

<script language="Javascript">
<!-- Begin
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
// End -->
</script>