Answers for "get the value from option jquery"

1

jquery get selected option value

$("select.your-select").change(function(){ 
	$(this).children("option:selected").val();
});
Posted by: Guest on September-10-2020

Code answers related to "get the value from option jquery"

Browse Popular Code Answers by Language