[EMAIL PROTECTED] schrieb:
> Thats amazing.. I was just puzzling over the exact same problem. I
> switched all my code to use explicit get which is better anyways, because
> I want to update more than one DOM element with results returned from the
> server.
> 
> Live and learn.
> 
> What are the three places where we should look for docs?

load does both get and post, kind of autodetecting depending on the 
arguments passed in...:

// get
$("#feeds").load("feeds.html");

// still get
$("#feeds").load("feeds.html?test=true");

// post, with data as hash passed in
$("#feeds").load("feeds.html", {test: true});


-- Klaus

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to