I am think this should be fairly easy, but struggling a bit ... I have a SELECT input element that allows the user to select multiple items. I would like to pro
SELECT
In the case of a the .val() function takes/returns an array, so you can simply pass in an empty array to clear the selection, like this:
$("#selectID").val([]);
You can test it out here.