How to get the select value in select box
$('.selectClass).on('change', function(e){ var selectedValue = $('option:selected', this).attr('value'); }