I just want to clear the selection of a html selectbox. The following works fine within Safari and Firefox but does not in Google Chrome:
$('select#selectbox').val(null);
Any ideas?
Whole js here: http://jsfiddle.net/EJgdA/8/
|
I just want to clear the selection of a html selectbox. The following works fine within Safari and Firefox but does not in Google Chrome:
Any ideas? Whole js here: http://jsfiddle.net/EJgdA/8/
| ||||
|
feedback
|
|
You can unset everything by using selectedIndex as such:
Note that | ||||
|
feedback
|
|
Interesting. Have you tried plain js?
| |||
|
feedback
|
|
this will do the trick for you..
you van use this line of code also if you have
| |||
feedback
|
select#selectboxis utterly pointless and is a much slower selector than just$('#selectbox')which hooks directly intodocument.getElementById()) – James Wiseman Jun 10 '11 at 9:38