I was under the impression that I could get the value of a select input by doing this $(this).val(); and applying the onchange parameter to the sel
Look for jQuery site
HTML:
Trigger the handler
JAVASCRIPT:
$( ".target" ).change(function() {
alert( "Handler for .change() called." );
});
jQuery's example:
To add a validity test to all text input elements:
$( "input[type='text']" ).change(function() {
// Check input( $( this ).val() ) for validity here
});