
29/11/2002, 00:04
|
 | | | Fecha de Ingreso: mayo-2002 Ubicación: Lima, Peru
Mensajes: 4.619
Antigüedad: 22 años, 10 meses Puntos: 7 | |
function JSTrim(txtBox) {
while(''+txtBox.value.charAt(0)==' ') txtBox.value=txtBox.value.substring(1,txtBox.value .length);
while('' + txtBox.value.charAt(txtBox.value.length-1)==' ')txtBox.value=txtBox.value.substring(0,txtBox.val ue.length-1);
}
.....
<input type='text'... onBlur='JSTrim(this);'> |