“SELECLE2 SET VALOR JQUERY” Respostas de código

SELECT2 OPÇÕES CLARA

Remove the selected options : 
-----------------------------
$('#mySelect2').val(null).trigger('change');

============================================

Completly remove the select2 initialization :
--------------------------------------------
$('#payment_method').html('').select2({data: [{id: '', text: ''}]});
Lokesh003

JQuery Select2 Definir valor

<select id="lang" >
   <option value="1">php</option>
   <option value="2">asp</option>
   <option value="3">java</option>
</select>

<script>
	$("#lang").select2().select2('val','1');
</script>
Matteoweb

SELECLET2 Tags Definir valor jQuery

$('#mySelect').select2({
  data: ['one','two'],
  tags: true
});
$('#mySelect').val(['one','two']).trigger('change')
Lokesh003

Get Select2 Selected Value JQuery

$('#id :selected').text();
Brahim Akarouch

SELECLE2 SET VALOR JQUERY

$('#inputID').select2('data', {id: 100, a_key: 'Lorem Ipsum'});
Vivacious Vulture

SELECLE2 SET VALOR JQUERY

$('#all_contacts').select2('data', {id: '123', text: 'res_data.primary_email'});
Vivacious Vulture

Respostas semelhantes a “SELECLE2 SET VALOR JQUERY”

Perguntas semelhantes a “SELECLE2 SET VALOR JQUERY”

Mais respostas relacionadas para “SELECLE2 SET VALOR JQUERY” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código