Answers for "set data value in select jquery"

1

select onchange jquery get the selected option data attribute

$('#country').on('change', function(){
    let id = $(this).find(':selected').data('id');
    console.log(id);
  });
Posted by: Guest on July-23-2020
0

how to set dropdown value in jquery

$("#comboboxid").val(yourvalue).trigger("chosen:updated");
Posted by: Guest on January-19-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language