up vote 22 down vote favorite
4
share [g+] share [fb]

I have a simple html block like:

<span id="replies">8</span>

Using jquery I'm trying to add a 1 to the value (8).

var currentValue = $("#replies").text();
var newValue = currentValue + 1;
$("replies").text(newValue);

What's happening is it is appearing like:

81

then

811

not 9, which would be the correct answer. What am I doing wrong?

link|improve this question

feedback

7 Answers

up vote 55 down vote accepted

parseInt() will force it to be type integer, or will be NaN (not a number) if it cannot perform the conversion.

var currentValue = parseInt($("#replies").text());
link|improve this answer
3  
Be careful of parseInt(), it recognizes "010" as 9 (values leading with a zero are parsed as octal). – MightyE Jul 13 '10 at 17:36
2  
Bleh, "010" parses as 8 (not 8) – MightyE Jul 13 '10 at 18:42
7  
@Jacob Relkin : Since this was useful, I just gave him another +1. If you know of a better answer, it's a pity you didn't share it. – ANeves Apr 4 '11 at 22:37
this works great – Gordon Jul 11 '11 at 18:48
I've come here with google about 3 times already. wish I could vote up thrice :p – iamserious Sep 5 '11 at 11:09
feedback

Parse int is the tool you should use here, but like any tool it should be used correctly. When using parseInt you should always use the radix parameter to ensure the correct base is used

var currentValue = parseInt($("#replies").text(),10);
link|improve this answer
feedback

The integer is being converted into a string rather than vice-versa. You want:

var newValue = parseInt(currentValue) + 1
link|improve this answer
feedback

In regards to the octal misinterpretation of .js - I just used this...

parseInt(parseFloat(nv))

and after testing with leading zeros, came back everytime with the correct representation.

hope this helps.

link|improve this answer
feedback

[your code should be like dis

<span id="replies">8</span>
var currentValue = $("#replies").text();
var newValue = parseInt(parseFloat(currentValue)) + 1;
$("replies").text(newValue);

Hacks N Tricks

link|improve this answer
feedback

to increment by one you can do something like

  var newValue = currentValue ++;
link|improve this answer
feedback

be care full about if the value which you want to parse is contains only digits. if it contains any non digit character then it may generate unexpected result

t456

if you are parsing the above span value. it may generate unexpected value as the intiger value of t will be considered

Thanks

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.