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>");
}
});
|
Is there a jQuery equivalent to this prototype code?
|
||||
|
|
|
http://docs.jquery.com/Ajax/ajaxError#examples
Attach a function to be executed whenever an AJAX request fails. |
|||||
|
|
Prototype's The syntax is a little different, due to jQuery's nature, but something similar to this should do the trick:
In this case, It is worth noting that with jQuery, all events are always bound to something. Usually a DOM Node, but possibly the
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 |
||||
|
|
|
I don't know prototype, but I'm pretty sure it's something like this:
Edit: or you can try with something more global:
|
|||||||
|