Thursday, May 16, 2024

Multi select combobox jquery - if selected no checkbox

 function checkWhetherddlBranchMultiSelectCheckOrNot() {

    if ($("#ddlBranch option:selected").length == 0) {

        alert("Please select Branch");

        return;

    }

}


No comments:

Post a Comment