How do I use jQuery Validate directly, without the submit button?

You can use the method valid() to invoke the validator directly.

You can use the method valid() to invoke the validator directly. It will return bool indicating whether the form is valid or not. Here is an example, from jQuery documentation: $("#myform").validate(); $("a.

Check"). Click(function() { alert("Valid: " + $("#myform").valid()); return false; }).

When you call the validate method on the jQuery validate plugin it returns an instance of Validator which you should store. When you need to, you can call the form or showErrors methods on the Validator instance to either validate the form, or validate the form and show the errors respectively.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions