How to trigger only one specific custom validation? Let's say I have three custom validation methods:
$.validator.addMethod('customValidation1', function (data)
{
}, 'Error');
$.validator.addMethod('customValidation2', function (data)
{
}, 'Error');
$.validator.addMethod('customValidation3', function (data)
{
}, 'Error');
Insted of calling all of them, how can I trigger just customValidation1 without triggering customValidation2 and customValidation3.
Calling something like this$("#id").valid(); is triggring all of them.