I am using jquery validation plugin(jqueryvalidation.org) for my input validations.
I have a text box say IP address . I have written IP address validation . This works fine . I have an "Update" button below this IP address text box. I have to compare this IP address(user input) with the database value. If both are different then allow the user to click "Update". If both are same then do not allow the user to "Update"
Is there any way to achieve this using jquery validation plugin?
Thanks.