How to make the first option of selected with jQuery Posted on 2023-03-082023-03-08 How do I make the first option of selected with jQuery? <select id="target"> <option value="1">...</option> <option value="2">...</option> </select> Ans: $("#target").val($("#target option:first").val());