I have an select box:
Number 0 Number 1
In 1.4.4 you get an error: $("#selectBox option")[3].attr is not a function
This works: $('#name option:eq(idx)').attr('selected', true);
$('#name option:eq(idx)').attr('selected', true);
Where #name is select id and idx is the option value you want selected.
#name
idx