Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Finding $(this) selected value in jQuery

Can't work this out...

I've got a .change event handler for multiple select boxes. I need to find the selected value each time. I can't work out how to use .val with $(this).

So here's my code:

$(document).ready(function(){
  $("select.className").change(function() {

    //console.log($(this).val);
    //console.log($("option:selected",this).val);
  })
})

Both of the above return a function, and not the selected value I am looking for.

Any help would be great. Thanks.

like image 444
leon.nk Avatar asked Dec 02 '22 06:12

leon.nk


2 Answers

Like everything else in jQuery, val is a function.
You need to call the function, like this: $(this).val().

like image 54
SLaks Avatar answered Dec 17 '22 15:12

SLaks


.val is a method rather than a property. You will need to call it with parens:

//console.log($(this).val());
//console.log($("option:selected",this).val());
like image 39
Neil Aitken Avatar answered Dec 17 '22 15:12

Neil Aitken