I\'m using Oleg\'s select2 demo, but I am wondering whether it would be possible to change the currently selected value in the dropdown menu.
For example, if the fou
you can simply use the get/set method for set the value
$("#select").select2("val"); //get the value $("#select").select2("val", "CA"); //set the value
or you can do this:
$('#select').val("E").change(); // you must enter the Value instead of the string