I would like some help on creating a function that on clicking a submit button will allow the user to add the data of the selection box into an uneditable text box and hidden file.
IE:
User selects option 5
<option value="5">Option 5</option>
, then clicks the "add Option" button. It will then add a new row with an uneditable text box [Option 5] and a hidden field
<input type="hidden" value="5">
. Each click on the Add Option Button will take the Text and Value of the selected drop down option. I would need this to be done without request from the server, ie client side. Is this possible? Does Ajax or DHTML need to be involved?
Thanks,