How to open new dynamic form with dropdown menu[Select tag]

Greg

New Member
I'll try to be specific as possible. I have a dropdown menu[select tag] which gives the user to select 5 options; namely numbers from 1 to 5. Now depending upon the the selected option i want to display a new form with same number of input tags as the option selectedSo if the user selects 3 from the dropdown menu, then a sub table will appear at the bottom displaying three input tags. the code is:\[code\]<select id="formName9" name="blockUnits"> <option selected="selected" value="http://stackoverflow.com/questions/15518698/1">1</option> <option value="http://stackoverflow.com/questions/15518698/2">2</option> <option value="http://stackoverflow.com/questions/15518698/3">3</option> <option value="http://stackoverflow.com/questions/15518698/4">4</option> <option value="http://stackoverflow.com/questions/15518698/5">5</option></select>\[/code\]
 
Back
Top