I am trying to make AJAX calls using the jQuery .load() method. When the request passes, it loads the return data correctly. If I get a 500 error, it does not. Is there a way to output the failed request message information as well?
$("#activity").load("/forumsetup", { id:myid },
function(data) {
$("#restart").css("visibility","visible");
});
I can see it in firebug, but would like to load it onto my page.