Answers for "jquery dropdown data attribute"

1

jquery get option data attribute

$(this).find(':selected').data('id');
Posted by: Guest on December-09-2020
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

Code answers related to "jquery dropdown data attribute"

Code answers related to "Javascript"

Browse Popular Code Answers by Language