Can't solve it ...
I have an event handler .changefor several select blocks. I need to find the selected value each time. I can not figure out how to use .valwith $(this).
So here is my code:
$(document).ready(function(){
$("select.className").change(function() {
})
})
Both of the above return a function, not the selected value that I am looking for.
Any help would be great. Thank.
source
share