How to use jQuery to select a dropdown option? How to use jQuery to select a dropdown option? javascript javascript

How to use jQuery to select a dropdown option?


How about

$('select>option:eq(3)').attr('selected', true);

Example: