Ver Mensaje Individual
  #6 (permalink)  
Antiguo 23/08/2010, 11:52
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años
Puntos: 834
Respuesta: Script no permitir seleccionar, no me deja escribir en input

Bueno, eso no es absurdo (lo anterior, lo siento, pero lo era).
Tu problema debería solucionarse usando algo como esto:
Código PHP:
function clearSelection() {
    var 
sel ;
    if(
document.selection && document.selection.empty){
        
document.selection.empty() ;
    } else if(
window.getSelection) {
        
sel=window.getSelection();
    if(
sel && sel.removeAllRanges)
        
sel.removeAllRanges() ;
    }