This is my HTML
<select name="countries" id="countries" MULTIPLE size="8"> <option value="UK">UK</option> <option value="US">US</option> <option value="Canada">Canada</option> <option value="France">France</option> <option value="India">India</option> <option value="China">China</option> </select> <br /> <input type="button" id="select_all" name="select_all" value="Select All">
When user click on 'Select All' button, I want all the options in the select box to be selected
$('#select_all').click( function() { // ? });
Windows: We need to hold down the CTRL button to select multiple options. Mac: We need to hold down the command button to select multiple options.
Selecting multiple options vary in different operating systems and browsers: For windows: Hold down the control (ctrl) button to select multiple options. For Mac: Hold down the command button to select multiple options.
Try this:
$('#select_all').click(function() { $('#countries option').prop('selected', true); });
And here's a live demo.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With