I want user to select time from the drop down list. Currently I hard coded the time.
Ex:
Is there any better way to do this?
Ex:
Code:
<option value="0" selected="selected"> Select</option> <option value="08:30" >08:30</option> <option value="09:30" >09:30</option> <option value="10:30" >10:30</option> <option value="11:30" >11:30</option> <option value="12:30" >12:30</option> ........
Comment