It is not clear why you want to do this. If you want to get the correct numerical value, you could use unary + [docs]:
value = +value;
If you just want to format the text, then regex could be better. It depends on the values you are dealing with I'd say. If you only have integers, then
input.value = +input.value;
is fine as well. Of course it also works for float values, but depending on how many digits you have after the point, converting it to a number and back to a string could (at least for displaying) remove some.
parseInttakes a second parameter, the radix, which should always be set! Set it to10. – Felix Kling Jul 13 '11 at 9:01+didn't think of it. – naveen Jul 13 '11 at 9:12