Skip to content

Instantly share code, notes, and snippets.

@jvinceso
Last active November 29, 2016 16:44
Show Gist options
  • Save jvinceso/75ccf3db144c51b8394d8a8adab7c549 to your computer and use it in GitHub Desktop.
Save jvinceso/75ccf3db144c51b8394d8a8adab7c549 to your computer and use it in GitHub Desktop.
Seleccionar Opción de un Combo Chosen
$("#cboObjetivo option:eq(1)").prop('selected', true);//eq(1) Indice de Opcion
$('#cboObjetivo').chosen();
$('#cboObjetivo').trigger('chosen:updated');
$('#cboObjetivo').change();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment