vote up 5 vote down star
2

Is there a jQuery equivalent to this prototype code?

Ajax.Responders.register({
  onException: function(x,y)
  {
    if(y.message!="Syntax error") new Insertion.After("toperrorbox","<p style='color:red'>"+y.message+"</p>");
  }
});
flag

3 Answers

vote up 1 vote down check

http://docs.jquery.com/Ajax/ajaxError#examples

$('#toperrorbox').ajaxError(function (event, request, settings) {
   $(this).after("<p style='color:red'>"+ request.responseText +"</p>");
}

Attach a function to be executed whenever an AJAX request fails.

link|flag
Are you sure responseText is set to an error message on failure? (on all browsers?) – Stijn Sanders Aug 6 at 9:33
Eventually I'll use this: $().ajaxError(function(e,r){$("#topnav").after("<p style='color:red'>"+r.statusText+"</p>"); your answers wins due to brevity – Stijn Sanders Aug 6 at 10:18
vote up 0 vote down

I don't know prototype, but I'm pretty sure it's something like this:

$.ajax({
    error: function(xhr, textStatus, exception) {
        if (exception.message != "Syntax error") {
             var newItem = '<p style="color:red">' + exception.message + '</p>';
             $('#toperrorbox').after(newItem);
        }
    }
});

Edit: or you can try with something more global:

$('#toperrorbox').ajaxError(function(event, XMLHttpRequest, ajaxOptions, thrownError) {
        if (thrownError != "Syntax error") {
             var newItem = '<p style="color:red">' + thrownError + '</p>';
             $(this).after(newItem);
        }
    })
link|flag
1  
The second example requires a jQuery object as its base. – tvanfosson Aug 4 at 17:05
Oops, you're right. Sorry. – ppiotrowicz Aug 4 at 17:18
vote up 1 vote down

Prototype's Ajax.Responders are global listeners that listen to ALL ajax events. jQuery does indeed have an equivalent. The global Ajax Events.

The syntax is a little different, due to jQuery's nature, but something similar to this should do the trick:

$('#toperrorbox').bind('ajaxError', function (event, XMLHttpRequest, ajaxOptions, thrownError) {
   // thrownError only passed if an error was caught
   // this == dom element listening
   var message = thrownError === undefined? XMLHttpRequest.responseText : thrownError.message;
   $(this).after("<p style='color:red'>"+ message +"</p>");
}

In this case, XMLHttpRequest.responseText will contain the body (if any) returned from the server on the failed request. And thrownError will contain the actual exception, which I believe you are actually after. But, I'd recommend checking to see if an exception was indeed passed in before trying to print its message, which is what I've done in my example. If it has caught an exception, it'll use that message, but if not, it'll use the server response.

It is worth noting that with jQuery, all events are always bound to something. Usually a DOM Node, but possibly the window or the document. If you wanted to do the same thing, without binding to the specific element to act on (like the above example), you could bind the event to the window and select the element(s) to work on in your callback like this:

$(window).bind('ajaxError', function (event, XMLHttpRequest, ajaxOptions, thrownError) {
   // thrownError only passed if an error was caught
   // this == dom element listening
   var message = thrownError === undefined? XMLHttpRequest.responseText : thrownError.message;
   $('#toperrorbox').after("<p style='color:red'>"+ message +"</p>");
}

This may afford you greater control over the events, as you do not have to remember which elements they were bound to, and if you didn't use anonymous functions, you could unbind specific callbacks at will.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.