I have read and read and read.. I am trying to pull a feed I have followed ever last answer i can google. I don’t get what the issues are here cause firebug is fine with finding and parsing the darn json.
so try one
var url='http://images.wsu.edu/javascripts/tracking/configs/pick.asp';
$.getJSON(url+'?callback=?', function(data){
alert('true');
$.jtrack({
load_analytics:{account:GAcode},
trackevents:data // this can be hard codded here or set do be feed in like so
});
});
FAIL yet i see it in 
so
var url='http://images.wsu.edu/javascripts/tracking/configs/pick.asp';
$.ajax({
url: url,
cache: false,
dataType: 'jsonp',
jsonp : "callback",
success: function(data){
alert('data');
//data=jQuery.parseJSON(data);
$.jtrack({
load_analytics:{account:GAcode},
trackevents:data // this can be hard codded here or set do be feed in like so
});
},
error: function(e, xhr){
alert('error');
alert(e);
}
});
And again FAIL .. so.. um think error would tell me yet.. nothing.. so.. lets be real and test the output it’s self cause sure as hell it finds the url and I’m invoking jsop and and and.. well lets validate the output cause surely that is the issue.

So.. well I don’t know.. I have hit every darn thread here from bangkok. One one know what the deal is?
Checkout this link:
JSON Example using Callback
I think the JSON returned needs to put the callback in the returned JSON. In the example above, it’s placed at the front like: