Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a variable in Javascript:

var test ="whatever"

I just want to pass this variable inside a hidden input:

<input type="hidden" class="myinput" value="">

I tried:

$('.myinput').attr('test');

But it does not seem to work.

Thank you for your help.

share|improve this question
Did it help, if so please mark it is as accepted for closure. – Vega Nov 13 '12 at 20:00

1 Answer

up vote 8 down vote accepted
  1. Use .val function to set the value of hidden input.
  2. Remove the quotes to consider it as a variable and not a string literal.

See below code:

$('.myinput').val(test);
share|improve this answer
"Use .val function to set the value of the textbox" More to the point, to set the value of a hidden input. (Hidden inputs are not text boxes.) – T.J. Crowder Nov 12 '12 at 22:46
Thank you very much! – Juliette Dupuis Nov 12 '12 at 22: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.