Why is my Hidden value not being assigned to my input text?
I've got this HTML:
-
<input type="text" id="BLAboxemailsection1" value="bla">
...and this jQuery:
- $('[id$=boxemailsection1]').text('[id$=hfuseremail]').value();
I also tried:
- $('[id$=boxemailsection1]').text('[id$=hfuseremail]').valueOf();
It's not happening, though; boxemailsection1 retains the "bla"
How can I get the hidden val into boxemailsection1?