| Author |
Problem with jquery.validate.js plugin selectors
|
Deepak Prasanna Ramaswamy
Greenhorn
Joined: Aug 27, 2009
Posts: 3
|
|
Hi Guys, Im trying to do a client side form validation using the jquery.validate.js plugin.
This is what i tried.
Everything works perfect!
But since im programming under rails my html gets generated in way where the input tag looks like this,
If i change the name back to name="data" my rails functionality gets affected.
So i modified the script like this
Now im getting a javascript error. How can accomplish the validation without changing the name attribute of the input tag?
Apart from name is there anyother selector for which rules and messages can be set? Any takers ?
|
There is only one thing which god lacks, and that is existence!!
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
|
|
You need to use quotes around your element name because user[data] is saying store this in an array called user at index data.
Eric
|
 |
Deepak Prasanna Ramaswamy
Greenhorn
Joined: Aug 27, 2009
Posts: 3
|
|
Thanks Eric.
It worked!
|
 |
 |
|
|
subject: Problem with jquery.validate.js plugin selectors
|
|
|