Having some troubles with setting a String option selected in a select2:
With the option: "option string1 /option" used:
$('#select').val("string1").change();
BUT with an option with a value: option value "E" string1 /option :
$('#select').val("E").change(); // you must enter the Value instead of the string
Hopes this help someone struggling with the same issue.