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
If you use dataType: 'jsonp' JQuery appends a callback url parameter to the request. The value of this parameter must be the function name of the callback function the server returns. As Eugene Retunsky already mentioned this is formatted incorrectly, also it seems that the server code is omitting the first character of the function name so jQuery_674... becomes Query_674... which will not work.