How to reset value of Bootstrap-select after button click

user6758349 picture user6758349 · Jan 26, 2017 · Viewed 53.8k times · Source

I am using Bootstrap-select plugin (https://silviomoreto.github.io/bootstrap-select/) for my dropdown select box. After I click a button, I want the box to refresh and the "selected" option to reset. This is the dropdown

<select id="dataPicker" class="selectpicker form-control">
  <option value="default" selected="selected">Default</option>
  <option value="one">One</option>
  <option value="two">Two</option>
  <option value="three">Three</option>
</select>

And this is my attempt at it, does not work. Any ideas on how it should be?

$("#dataPicker option:selected").val('default');
$("#dataPicker").selectpicker("refresh");

Answer

Nedim Hozić picture Nedim Hozić · Jan 26, 2017

Without "option:selected"

$("#dataPicker").val('default');
$("#dataPicker").selectpicker("refresh");