I have a form with a couple of buttons and I’m using jQuery Validation Plugin from http://jquery.bassistance.de/validate/. I just want to know if there is any way I can check if the form is considered in valid state by jquery validation plugin from anywhere in my javascript code.
Share
Use
.valid()from the jQuery Validation plugin:Where the form with
id='form_id'is a form that has already had.validate()called on it.