Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find the hosted version of the jQuery Validation plugin?

Why is there not a reference to the hosted jQuery Validation Plugin anywhere?

Can somewhere share the Google Code link?

like image 822
dcolumbus Avatar asked Feb 19 '11 17:02

dcolumbus


People also ask

How do you check if jQuery validate is working?

The plugin adds a validationPlugin function to jQuery. fn , so simply check whether it exists or not; if (typeof jQuery. fn.

What is jQuery validate?

Validation in JQuery: Using JQuery, a form is validated on the client-side before it is submitted to the server, hence saves the time and reduce the load on the server. Form Validation means to validate or check whether all the values are filled correctly or not.

How we can use jQuery validation plugins in MVC?

The jQuery validation plugin leverages a CSS selector like syntax to apply a set of validation rules. You can download the plugin (js) file from jQuery website. The password and confirm password objects are matched by the validation plugin for you and shows the message on the equalTo attribute if they don't match.

What is javascript validation plugin?

Powerful Multi-Functional Form Validation Plugin - jQuery Validation. jQuery Validation is a javascript based plugin that helps you implement a powerful client side validator to your form elements that validate the value ( name, email, address, etc..) your user input when submitting.


2 Answers

There is no "official" plugin for validation.

To my knowledge, Google doesn't host that plugin (assuming you're referring to this one).

Although that page does provide a list of links to Microsoft CDN for hotlinking.

Here they are:

  • http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/jquery.validate.js
  • http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/jquery.validate.min.js
  • http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/additional-methods.js
  • http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/additional-methods.min.js

It even has the localization files, e.g. Russia is http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_ru.js.

like image 150
user113716 Avatar answered Sep 28 '22 07:09

user113716


You can find the most current links on the project page: jQuery Validation Plugin page

like image 29
Magentron Avatar answered Sep 28 '22 05:09

Magentron