How to set the SELECTED property of dropdown in jQuery?

Viewed 4954

I am sending the index number of dropdown's options that users selects from index. Now want to select that specific option as 'selected' on another view. How to make it using jQuery?

$('#book_selection').attr("disabled", "disabled");
$('#book_selection').selectedIndex = 1;

but its not working...

2 Answers
Related