Ejemplo 1: seleccione 2 opciones claras
Remove the selected options :-----------------------------$('#mySelect2').val(null).trigger('change');============================================Completly remove the select2 initialization :--------------------------------------------$('#payment_method').html('').select2(data:[id:'', text:'']);
Ejemplo 2: seleccione 2 seleccione un valor
SELECT2V4:============For select2 v4 you can append directly an option/s as follow:<select id="myMultipleSelect2" multiple="" name="myMultipleSelect2[]"><option value="TheID" selected="selected">The text</option></select>OrwithJQuery:---------------var $newOption =$("").val("TheID").text("The text")$("#myMultipleSelect2").append($newOption).trigger('change');
other example :---------------$("#myMultipleSelect2").val(5).trigger('change');
Recuerda difundir esta división si te fue de ayuda.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)