Answers for "how to get attribute value of selected option in jquery"

0

selected option attribute jquery

$('#location').find('option:selected').attr('myTag');
Posted by: Guest on August-28-2020
2

jquery get data attribute of selected option

$(this).find(':selected').data('id')
Posted by: Guest on July-22-2020
0

get attribute of selected option jquery

var option = $('option:selected', this).attr('mytag');
Posted by: Guest on May-01-2021

Code answers related to "how to get attribute value of selected option in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language