You can use $.on() function and attach multiples handlers.
$("#element").on('keyup change', function (){
// Your stuff...
});
You can use $.on() function and attach multiples handlers.
$("#element").on('keyup change', function (){
// Your stuff...
});