On Aug 19, 12:31 am, Pops <[EMAIL PROTECTED]> wrote:
> In the docs for .load, it has:
>
> params (Object): (optional) A set of key/value pairs that will be sent
> as data to the server.
>
> That is not what I am seeing, the following
>
> $('#containerId').load("url","k1=v1&k2=v2");
Hi, Pops!
That should be:
$(...).load('url', {k1='v1', k2:'v2'});
:)

