Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

setTimeout("refresh()", 2*15000 );

This is a code from my javascript

here setTimeout is a built in function and refresh is a function which i have declared.

i want to pass a variable (cval1) to this refresh fuction

i have tried this

setTimeout("refresh(cval1)", 2*15000 );

bit its not working

What is the exact way to do this??

Please help me ...

Thanks

share|improve this question

1 Answer

up vote 2 down vote accepted

As first parameter of setTimeout pass a function instead of a string, so you have access to all variables in current scope.

setTimeout(function(){refresh(cval1)}, 2*15000);
share|improve this answer
I'd recommend reading an article regarding javascript timers and scope. Here's a tutorial I found with a quick Google search - switchonthecode.com/tutorials/… – Andy E Dec 12 '09 at 11:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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