I have the code provided below. I've tried using jquery to select to make something happen but eventually what I have doesnt work or may be incorrect.
$("#emailList option").click(function() {
alert("OMG");
});
<select id="emailList" multiple="multiple" name="emailList">
<option>[email protected]</option>
</select>
can someone provide me with the correct way of selecting an item from my listbox?