I'm using jQuery.validity to validate PHP form inputs. I need to skip validation when user clicked selected input button (eg: Logout button)

Sample code used for validation:

$("form").validity(function() {
    $("#DateInput") 
        .require()
        .match("date");
});

How to skip validation for selected input buttons?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I posted this question in Validity official site, issues section. This is the answer given

In general, validation is bound to a form rather than a submit button. If your logout button is in a form you don't want to validate, just don't call validity on that form. e.g. $("#formWithInputs").validity(...)

So managed to make it work by locating input controls in different forms

link|improve this answer
feedback

make change the logout button to <input id="logout" type="button" /> instead of submit

link|improve this answer
Then how to run Logout Code? – Nalaka526 Feb 22 at 15:37
add $('logout').click(function(){...}) on the logout. – limjohn Feb 22 at 19:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.