Untitled

Anonymous
plain_text
01/09/2025 9:53 AM
468 B
16
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