onChange

add a change event element that supports it

$('.input').onChange(callback,?options);

Adding change event

$('.input').onChange(function(e){
    //perform action here
});

Last updated