“jQuery Select Clear Параметры” Ответ

jquery clear select 2

$('select2element').val(null).trigger("change")
Selfish Seahorse

jQuery Select Clear Параметры

$('#mySelect')
    .find('option')
    .remove()
    .end()
    .append('<option value="whatever">text</option>')
    .val('whatever')
;
Nervous Nightingale

Ответы похожие на “jQuery Select Clear Параметры”

Вопросы похожие на “jQuery Select Clear Параметры”

Больше похожих ответов на “jQuery Select Clear Параметры” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования