I am trying to make AJAX calls using the jQuery.load () method. When the request passes, it correctly loads the returned data. If I get a 500 error, it is not. Is there a way to display error information with an error message?
$("#activity").load("/forumsetup", { id:myid },
function(data) {
$("#restart").css("visibility","visible");
});
I see this in firebug, but I want to upload it to my page.
source
share