para internet historia gratis descargar definicion caracteristicas html css internet-explorer internet-explorer-8 internet-explorer-7

html - gratis - internet explorer historia



Evite la selección de texto cuando se arrastra desde un destino externo en IE7/8 (1)

Se ha discutido cómo deshabilitar la selección de texto: ¿Cómo desactivar el resaltado de selección de texto usando CSS?

Sin embargo, aún no he encontrado una solución que impida al usuario seleccionar texto al arrastrar desde fuera del objetivo deseado. Estoy buscando una solución que funcione en IE 7/8.

¿Algunas ideas?


El IE8- onselectstart event y las soluciones de atributo no seleccionables ya han sido discutidas.

La solución CSS también ha sido publicada. Aquí está la esencia:

<!-- save this file as unselectable.htc and remember where you put it --> <public:component lightweight="true"> <public:attach event="ondocumentready" onevent="unselectable()" /> <script type="text/javascript"> function unselectable(){ element.onselectstart = function(){ return false; }; element.setAttribute(''unselectable'', ''on'', 0); } </script> </public:component> /* add this rule to the existing CSS file */ .unselectable { user-select: none; -moz-user-select: none; -khtml-user-select: none; behavior: url(unselectable.htc); /* change this path as needed */ }