On Jan 18, 2007, at 1:05 PM, Mungbeans wrote:

> I updated to 1.1 a couple of days ago and now all my load statements
> ( eg: $("#selector").load(url, {"stuff":"stuff"}, function() {alert 
> ("more
> stuff")}); )
> have stopped working.

http://jquery.com/dev/bugs/bug/814/

This has been fixed in SVN. Meanwhile you can use post() instead of  
load(). Instead of doing something like:

$('#selector').load(url, {'foo':'bar'}, function(str) {
     console.log(str);
}

do something similar to:

$('#selector').post(url, {'foo':'bar'}, function(str) {
     this.innerHTML = str;
     console.log(str);
}

--
Mika Tuupola                      http://www.appelsiini.net/~tuupola/




_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to