Hi have an hidden input into an display:none div . I need to chenge the value of my input hidden but i can't.. I try this:
<div style='display:none'>
<input id='hidden_input' name='xxx' type='hidden' value='' />
</div>
$("#hidden_input").val('test');
Hey help??