Jquery Change event for input and select elements
- by Abs
Hello all,
I am trying to alert something when ever a drop down box changes and when ever something is typed into an input. I don't think I can use change for input fields? What would you use for input fields? Also, what about input fields of type file? Same thing. Here is what I have so far and its not working:
$('input#wrapper, select#wrapper').change(function(){
alert('You changed.');
});
Thanks all