So, here's my JSONP URL:
http://community.tradeking.com/leaderboard.js
And here's the jQuery I'm trying to parse it with:
$.ajax({
dataType: 'jsonp',
jsonp: 'callback',
url: 'http://community.tradeking.com/leaderboard.js?callback=?',
success: function () {
alert("something");
},
});
And here's the error I'm getting in Firebug:
processLeaderboard is not defined
I've also tried getJSON and the jQuery JSONP specific plugin, but they all fail in similar ways. The JSONP is being used successfully elsewhere.