imValidateForm 1.1 - Ajax Success: External Function
The following example shows how to use the imValidateForm plugin and using the 'ajax_success' option to call an external function. Remember, the external function must be a method of a Javascript object.
function registration() {
this.regComplete = function() {
alert('You have completed registration');
};
}
var registration = new registration();
View the source code for this page to view how to use the plugin. For documentation about the imValidateForm plugin, view the blog post.

