30/07/2007, 07:28
|
| | Fecha de Ingreso: enero-2007
Mensajes: 405
Antigüedad: 17 años, 10 meses Puntos: 3 | |
Re: seleccionar texto en input al seleccionar? <input type="text" id="x" name="POST_CODE" size="8" value="05073" onclick="seleccionar()">
y el javascript:
function seleccionar(){
document.getElementById("x").selectionStart = 0;
} |