Search code examples
jquerybootstrap-multiselect

bootstrap multiselect - De-select / Uncheck all options in a single click


I'm using Bootstrap multiselect and I would like to add an option to uncheck all selected options. Please provide me with a solution for the same. Thanks for any help :)


Solution

  • Try this

    $("option:selected").prop("selected", false)