> $.getJSON(mypage.php, function(data) {
> var a = data.a;
> var b = data.b;
> // etc
> });
Oops. That should read:
var a = data[0];
var b = data[1];
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
