How can I get the current <select> text? I mean if I have selected the <option name="me">ME</option> how can I get its text?
Because the way I’m trying, returns all the texts inside the <select>
$('#action').change(function() {
console.log($(this).text()); //this returns all the texts inside select
try this