tags:

views:

39

answers:

2

What I tried is by adding selected,but not working:

<select>
      <option value="-1" selected>--</option>
      <option value="0">femail</option>
      <option value="1">male</option>
     </select>
+3  A: 

Try selected="selected"

streetpc
still not working
Shore
A: 

Several browsers will save your current selection when you reload the page. Try clearing your browsers cache and reloading the page (shift + f5). What you have above should be correct.

tj111
oh,you are right..
Shore