you can either track changes on an input field or check on submit:
$('form').submit(function(event){
alert("this gets called when form submitted here you can test differences");
});
$('form input[type="text"]').change(function(event){
alert("this gets called when and text input field gets changed");
});
further more you could check on keyboard input on a specific input fields:
$('form input[type="text"]').keydown(function(event){
alert("this gets called on key board input before the data is inserted in input field");
});
$('form input[type="text"]').keyup(function(event){
alert("this gets called on key board input after the data is inserted in input field");
});
Note : type="text"
is only an example you probably also want your password and email fields to be included. (and select boxes if you use on change event)