jquery.validate.unobtrusive is a validator for jquery.validate . This is like an extension.
jquery.validate.unobtrusive implements all events and jquery.validate uses it.
You can view the jQuery.validate.js file and see what form it uses.
// validate the form on submit this.submit( function( event ) { ...
If you want to call validation yourself, you can call
$("#myform").valid()
source share