Last active
November 29, 2016 16:44
-
-
Save jvinceso/75ccf3db144c51b8394d8a8adab7c549 to your computer and use it in GitHub Desktop.
Seleccionar Opción de un Combo Chosen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("#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