I\'m trying to grap this remote JSONP feed via jQuery.
Every time I try, I get an error of \"Uncaught SyntaxError: Unexpected token (\" or similar.
Am I doing
Because this feed returns JSON, not a javascript function call:
[{Query172031345640518702567_1334079878875({...
But it should be:
Query172031345640518702567_1334079878875({...
I don't know if this service is under your control and you can changed it, or you just need to add some params to the URL (check the manual).
Also the content type of the response should be application/javascript
, not text/json
.