Possible Duplicate:
Workarounds for JavaScript parseInt octal bug

well i have this http://jsfiddle.net/gMDfk/1/ The alert returns 0 The code in jsfiddle works perfect when value is equal to eight or nine.. Wtf is going on here?

link|improve this question

72% accept rate
1  
Please don't just link to jsfiddle but paste the code here. – cambraca Dec 27 '11 at 20:42
ok man, i will thing about this tip in my future questiions:P – Chris P Dec 27 '11 at 20:44
1  
Indeed. I used to ask people to do that, but now I just settle on the fact that the OP doesn't want future visitors to get any benefit from the Q&A; my interest falls apart after that realisation. – Lightness Races in Orbit Dec 27 '11 at 20:44
feedback

closed as exact duplicate by Pekka, cHao, Lightness Races in Orbit, AlfonsoML, cambraca Dec 27 '11 at 20:44

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

up vote 7 down vote accepted

add a , 10 to parseInt:

parseInt( val, 10 );

which tells JS to treat is as a base-10 number. By default, anything starting with 0 is treated as an octal, base-8 number. Since 09 isn't a valid base-8 number, you'll get 0

link|improve this answer
2  
Good answers contain explanations. 12.4k users know that! – Lightness Races in Orbit Dec 27 '11 at 20:41
I was typing it! – cwolves Dec 27 '11 at 20:41
3  
Then you accidentally pressed "submit" before you'd finished writing? – Lightness Races in Orbit Dec 27 '11 at 20:41
1  
No, I just decided to write more instead of leaving just the "do this" answer :) – cwolves Dec 27 '11 at 20:42
1  
@cwolves: Draft answers are discouraged. It's not a race! – Lightness Races in Orbit Dec 27 '11 at 20:45
show 4 more comments
feedback

Prefixing a number with a 0 means it's interpreted as octal by javascript. Try this:

alert(parseInt("010")); //shows "8"

You can fix it by passing 10 as a second param to parseInt, this lets it know you want it parsed in decimal.

alert(parseInt("010", 10)); //shows "10"
link|improve this answer
feedback

Parseint should use radix parameter: parseint (value, radix). In your case, radix is 10. Otherwise, it will take it as octal.

link|improve this answer
feedback

specify the base

parseInt(some_id_value,10);
link|improve this answer
feedback

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