Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/11/2007, 01:21
monosulpa
 
Fecha de Ingreso: septiembre-2007
Ubicación: El pais del oro negro
Mensajes: 96
Antigüedad: 17 años, 4 meses
Puntos: 2
Re: Alguien Tiene Codigo Para Bloquear Subrayado

Código:
<script type="text/javascript">

function disableSelection(target){
if (typeof target.onselectstart!="undefined") //IE route
	target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
	target.style.MozUserSelect="none"
else //All other route (ie: Opera)
	target.onmousedown=function(){return false}
target.style.cursor = "default"
}

window.onload = function() {
disableSelection(document.getElementById("parrafo"))
}

</script>