Untitled
unknown
plain_text
a year ago
350 B
8
Indexable
if (selectedValues.includes("select_all")) {
// Select all options except "Select All"
$("#exampleChosen option").prop("selected", true);
$("#exampleChosen option[value='select_all']").prop("selected", false); // Deselect "Select All" option
$("#exampleChosen").trigger("chosen:updated");
}Editor is loading...
Leave a Comment