I am trying to get what all fields(input,select) are changed during keyup and change inside the form.
I did like this for onchange. But I need both keyup and change… (Any changes on the field need to update via ajax)
$("form#frm_job").find('input,select').change(function() {
var field_value = $(this).val();
....
....
});
Please help.
you can use on() + multiple events binding: