Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/12/2007, 14:57
Avatar de agressor
agressor
 
Fecha de Ingreso: noviembre-2007
Ubicación: Knocking the Death Door..
Mensajes: 368
Antigüedad: 17 años, 2 meses
Puntos: 3
Re: quitar el espacio al inicio

Proba con esto a ver que tal te sale..
no lo he podido verificar pero posiblemente luego te lo mando ya funcional..
function stripInitialWhitespace (s)
{ var i = 0;
while ((i < s.length) && charInString (s.charAt(i), whitespace))
i++;
return s.substring (i, s.length);
}