We are trying to plug in a jQuery validation plugin that runs on our site, but we run into a problem here.
On our site, we have a login form available for the user on each page, where we would like to use the plugin to verify that the user has entered a username and password.
We also have several pages showing, for example, some form that we would also like to check with the validate plugin.
The problem we saw is that there is no way to group the text box of the username and password for the login button, as well as all the text fields and stuff in another form to this form. If we use the ASP.NET validator, we would use the ValidationGroup attribute, but we have not yet found a good solution for this using JQuery.
source
share