In Firebug I see the request and all the data is present. But in an attempt to even just do a simple alert of console.log they get completely bypassed. What exactly am I doing wrong that the alert is never hit?
var feedPage = 1;
var rowsToGet = 10;
$(function() {
var urlString = "cfc/getFeed.cfc?method=" + 'getFeed' + "&page=" + feedPage + "&rows=" + rowsToGet + "&userID=" + 2;
$.get(urlString, function(jsonData) {
alert(jsonData); // never happens
},"json");
//displayResults(feedData,feedPage,rowsToGet);
});
Add an error handler to your ajax call to see why it is failing.