I'm trying to build a page that shows links to a bunch of my blog posts, and a little bubble next to each link with the comment count for that post. Thought the easiest way to do this would be to use the "Javascript public facing API" that disqus talks about in their dev docs.
If I visit this link in the browser I get the JSON I am looking for:
However when I try to load it from jQuery it gives me the dreaded XMLHttpRequest cannot load: Origin is not allowed by Access-Control-Allow-Origin.
I have tried using $.getJSON() and $("#div").load() to load it.
I have added both localhost and 127.0.0.1 to the "Domains linked to my public key" settings in Disqus API.

jQuery.getJSON, you can just add&callback=?and jQuery will take it from there. I still thinkcount.jsis easier for this particular scenario. – Matthew Flaschen Jun 7 '12 at 19:49