Admin
 
 
Logo DIPLOX
Deshabilitar la selección de texto en la web
Volver Por face
  
Domingo, 23/08/2009
Script para deshabilitar la selección de texto

<script type=¨text/javascript¨>
window.onload = function () {
document.onselectstart = function () {return false;} // ie
document.onmousedown = function () {return false;} // mozilla
}
</script>


Volver Por face