I am trying to do a JSONP request for data from http://soarforward.com/ClassDocuments, but it's not working.
If you go to the URL you can see the JSON. I am converting an ASP.net object to JSON myself, so if the javascript is invalid I can modify it.
Here is my example code : http://jsfiddle.net/guanome/JDLqf/
function getFiles() {
var url = "http://soarforward.com/ClassDocuments";
$.getJSON(url + "?callback=?", null, function(result) {
console.log(result);
});
}
$(document).ready(function() {
getFiles();
});