vote up 1 vote down star

I have a hidden input element that I am using as a counter to use to name more input elements generated by JavaScript. To get the value of the counter i use

parseInt($('#counter').val());

However I use this code snippet several times in my code, so I thought it would be good to put it in a function

function getCounter(){
   parseInt($('#counter').val());
}

this always returns undefined, while running just the code snippet returns the correct value. This happens in several ways that I tried defeining the function, as a function inside a $(function(){}), as a global function etc. How do I fix the scoping?

flag

2 Answers

vote up 6 vote down check

Add "return" to your return statement :)

function getCounter(){
   return parseInt($('#counter').val());
}
link|flag
Wow. I feel silly. I guess I am too used to ruby right now. – Craig Jun 24 at 15:40
Don't feel silly... it's always the little, assumed things that are impossible to catch. It just usually takes a fresh pair of eyes :) – James Skidmore Jun 24 at 15:42
Only thing that is wrong with the solution is it needs to have the base included. return parseInt($('#counter').val(), 10); so you do not run into the Octal problem. – epascarello Jun 24 at 15:45
Yeah, I missed the missing return too. I was just getting ready to add a comment asking for more code, thinking it was really a scoping problem.... – Jonathan Jun 24 at 15:48
vote up 2 vote down

How about adding a return

function getCounter(){
   return parseInt($('#counter').val());
}
link|flag

Your Answer

Get an OpenID
or

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