Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have tried numerous things and nothing seems to be working.

I am using jQuery and Chosen plugin.

Methods I have tried:

var select = jQuery('#autoship_option');

select.val(jQuery('options:first', select).val());

jQuery('#autoship_option').val('');

jQuery('#autoship_option').text('');

jQuery('#autoship_option').empty('');

jQuery("#autoship_option option[value='']").attr('selected', true);

It always shows the Active Autoship option once it has been selected. I can't seem to get it to clear the selection.

Here is the select box:

<select id="autoship_option" data-placeholder="Choose Option..." 
style="width: 175px;" class="chzn-select">
    <option value=""></option>
    <option value="active">Active Autoship</option>
</select>

Anyone familiar with Chosen and being able to clear a select box with one option? (It will have more options in the future.

share|improve this question

6 Answers

up vote 14 down vote accepted

Setting the select element's value to an empty string is the correct way to do it. However, that only updates the root select element. The custom chosen element has no idea that the root select has been updated.

In order to notify chosen that the select has been modified, you have to trigger liszt:updated:

$('#autoship_option').val('').trigger('liszt:updated');

or, if you're not sure that the first option is an empty string, use this:

$('#autoship_option')
    .find('option:first-child').prop('selected', true)
    .end().trigger('liszt:updated');

See here: https://github.com/harvesthq/chosen/issues/605#issuecomment-5473794

share|improve this answer
That worked like a charm. I had a feeling I was missing something with Chosen. Thank you very much. :) – James Wilson Jul 6 '12 at 15:52
Argh, why isn't this in the documentation (or did I just miss it?) Thanks for this. – technomalogical Apr 12 at 0:31
@technomalogical - It sure is in the documentation. Just search for Updating Chosen Dynamically on that page. – Joseph Silber Apr 12 at 13:55

The first option should sufice: http://jsfiddle.net/sFCg3/

jQuery('#autoship_option').val('');

But you have to make sure you are runing this on an event like click of a button or ready or document, like on the jsfiddle.

Also make sure that theres always a value attribute on the option tags. If not, some browsers always return empty on val().

Edit:
Now that you have clarifyed the use of the Chosen plugin, you have to call

$("#autoship_option").trigger("liszt:updated");

after changing the value for it to update the intereface.

http://harvesthq.github.com/chosen/

share|improve this answer
The first option doesn't work. I am guessing because of the Chosen plugin taking control. – James Wilson Jul 6 '12 at 15:49
I've edited the answer. – rcdmk Jul 6 '12 at 16:09
Thanks for editing the answer to make it applicable. I did mention in the original posting that it was for jQuery and Chosen plugin. – James Wilson Jul 6 '12 at 16:43
If so, perdon me for missreading. – rcdmk Jul 6 '12 at 16:55

Try this:

$("#autoship_option option[selected]").removeAttr("selected");
share|improve this answer

i think you have to assign a new value to the select, so if you want to clear your selection you probably want to assign it to the one that has value = "". I think that you will be able to get it by assigning the value to empty string so .val('')

share|improve this answer
jQuery("#autoship_option option:first").attr('selected', true);
share|improve this answer
This did not work as well. Probably because of the Chosen plugin taking control. – James Wilson Jul 6 '12 at 15:50
$('#autoship_option').val('').trigger('liszt:updated');

and set the default option value to ''.

It has to be used with Chosen Updated Jquey available at this link: https://raw.github.com/harvesthq/chosen/master/chosen/chosen.jquery.min.js.

I spent one full day to find out at the end that jquery.min is different from chosen.jquery.min

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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