I would like to find a solution in jQuery that helps me find the selected option of a specific select name and have it transfered to a hidden text field.
My current select box and hidden field are as follow:
<select name="pa_weight">
<option value="">No default Weight…</option>
<option value="50g">50g</option>
<option value="100g">100g</option>
<option value="150g">150g</option>
</select>
<input type="text" class="hiddenField" id="hiddenField" />
Some expert help would be greatly appreciated, thank you