Me gustaría saber si alguno de ustedes conoce un modo de evitar la selección de texto en toda la página menos en los campos de texto de un formulario...
Veran, es que la idea me ha venido a la mente cuando he visto este script:
En el head se coloca:
Código:
Y en el body esto otro:<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" } </script>
Código:
Y entonces digo yo... en vez de tablas y ese segundo código... ¿por qué otras cosas lo deberíamos sustituir para lograr lo deseado amigos?<script type="text/javascript"> var alltables=document.getElementsByTagName("table") for (var i=0; i<alltables.length; i++) disableSelection(alltables[i]) //disable text selection within all tables on the page </script>
¡¡ Muchas gracias desde ahora y reciban un abrazo !!