select a option in dropdown using jquery code example
Example 1: jquery dropdown select
$('select>option:eq(3)').prop('selected', true);
Example 2: How do you select a particular option in a SELECT element in jQuery?
$('.selDiv option:eq(1)')
$('select>option:eq(3)').prop('selected', true);
$('.selDiv option:eq(1)')