Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

jquery find selected option in select

$('#dropdown').on('change', function() {
  var selected_option_value = $(this).find(":selected").val();
});
Source by theprogrammingexpert.com #
 
PREVIOUS NEXT
Tagged: #jquery #find #selected #option #select
ADD COMMENT
Topic
Name
3+6 =