jQuery.validator.format() - Where does it get it's parameter values from?
Reading through the jQuery.validator documentation on the
format() function , there is an example shown like this:
jQuery.validator.format("{0} is not a valid value");
There are no additional parameters given to the function, so I guess the "{0}" will not be getting replaced?
Or if so, where does it get its value from?
Thanks for enlightening me.