Maybe an example helps to explain, as I'm not sure I understand your question.

<form id="myform">
  <input class="required" remote="/unique-username" name="firstname"
value="Pete" />
</form>

$("#myform").validate();

Request being sent to server for remote validaiton: GET
/unique-username?firstname=Pete
The response-text must be "true" or "false" (without the quotes) and
will be interpreted as JSON.

Jörn

On Fri, Jul 25, 2008 at 3:08 PM, Nimrod <[EMAIL PROTECTED]> wrote:
>
> Hi All,
>
> I just have few questions about the use of jQuery Validation remote
> rule.
>
> How remote rule treat data being passed through querystring? What is
> the form of data being passed through querystring? Is it case
> sensitive?
>
> I hope you can give me answers to those questions.
>
> Thanks,
> Nimrod
>
>

Reply via email to