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>abc@123.com</option>
</select>
can someone provide me with the correct way of selecting an item from my listbox?
Try: