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/

link|improve this question

50% accept rate
So you want to un-select the currently selected option or what? This code just sets the value of current option to null. – Michael J.V. Jun 10 '11 at 9:36
Works fine for me in Chrome 3. What version are you testing with? (Random aside: select#selectbox is utterly pointless and is a much slower selector than just $('#selectbox') which hooks directly into document.getElementById()) – James Wiseman Jun 10 '11 at 9:38
feedback

3 Answers

up vote 1 down vote accepted

.val(null) only seems to work in FF and Opera, so I don't think it's a valid use case.

You can unset everything by using selectedIndex as such:

$('#selectbox').prop('selectedIndex', -1);

Note that .prop() only works in jQuery 1.6+, for lower versions you must use .attr().

link|improve this answer
feedback

Interesting. Have you tried plain js?

document.getElementById('selectbox').selectedIndex = -1;
link|improve this answer
feedback

$('select#selectbox').val(null); returns the value attribute of the selected option, you don't need to add select in your selector.

this will do the trick for you..

 $("#selectbox").find("option:selected").removeAttr("selected"); 

you van use this line of code also if you have jQuery1.6

$('#selectbox').prop('selectedIndex', -1); 
link|improve this answer
val(null) does not return the value, it's not the same as val(). Also removeAttr() fails in all browser I tried it in. – Seldaek Jun 10 '11 at 9:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.