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 currently calculate a random value with jQuery and save it to a variable.

I want this variable to be the value of:

<input type="text" class="mastery_num" name="mastery_num" id="mastery_num" value="VALUE_FROM_JQUERY"></input>

How can I do this?

share|improve this question

2 Answers

You're looking for val:

var your_variable = doMyCalculation();
$("#mastery_num").val(your_variable);
share|improve this answer
$("#mastery_num").val(your_saved_variable);

.val() is jQuery's equivalent of the plain JavaScript .value property. .val() either returns or sets the value depending on whether you supply a value to it.

Plain JavaScript version, for future viewers:

document.getElementById("mastery_num").value = your_saved_variable;
share|improve this answer

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.