
January 15th, 2004, 03:00 PM
|
|
Contributing User
|
|
Join Date: Apr 2003
Posts: 342
Time spent in forums: 21 h 52 m 26 sec
Reputation Power: 9
|
|
|
unfocus on drop down list.
I want to unfocus after selecting the drop down menu. But the problem is after you select "2", and u want to click again and move down to page by using scroll wheel mouse, it moves the menu to down instead of going down on page. how can i unselect when onclick it?
PHP Code:
<select name=mine onchange="self.focus();">
<option value="None" selected >None</option>
<option value="1" >1</option>
<option value="2" >2</option>
<option value="3" >3</option>
</select>
<select name=test onclick="this.form.test.options[0].selected = true;" >
<option value="None">None</option>
<option value="1" >1</option>
<option value="2" >2</option>
<option value="3" >3</option>
</select>
Last edited by tommy916 : January 15th, 2004 at 03:03 PM.
|