[jQuery] Re: getJSON flicker works but not mine -- URGENT HELP

2009-06-25 Thread David here
To: jquery-en@googlegroups.com > Subject: [jQuery] Re: getJSON flicker works but not mine -- URGENT HELP > > > > Since I can't debug pretty much on the server-side, I'd suspect that > somehow the data coming from flickr is more clean than from your host. > > I also get the f

[jQuery] Re: getJSON flicker works but not mine -- URGENT HELP

2009-06-25 Thread Etienne Robillard
Since I can't debug pretty much on the server-side, I'd suspect that somehow the data coming from flickr is more clean than from your host. I also get the following error, indicating most likely a problem parsing the json data: Error: invalid label Source File: http://include.classistatic.com/i

[jQuery] Re: getJSON flicker works but not mine -- URGENT HELP

2009-06-25 Thread dtrannn
Etienne, I'm using getJSON because I need to do cross-domain data fetching. I thought getJSON is the best way for doing that from reading the docs. No error messages show up in FF. In HTTP watch, I see the JSON content coming throw as { "title": "Recent Uploads tagged cat",

[jQuery] Re: getJSON flicker works but not mine -- URGENT HELP

2009-06-25 Thread Etienne Robillard
Hi dtrann, I never tried the $.getJSON method before but generally have better results using the plain $.ajax method. If you switch to that alternative, you should also pay attention to specifying the "json" dataType param. Oh and what is the error message reported ? ;-) Hope this helps, Etienn