Hi folks,
which of the following examples of global ajax handlers make more sense
and are easier to understand?
$("#msg").ajaxSuccess(function(){
$(this).append("<li>Successful Request!</li>");
});
or
$.ajaxSuccess(function(){
$("#msg").append("<li>Successful Request!</li>");
});
With chaining:
$("#msg").ajaxStart(function(){
$(this).show();
}).ajaxStop(function() {
$(this).hide();
});
or
var msg = $('#msg');
$.ajaxStart(function() {
msg.show();
});
$.ajaxStop(function() {
msg.hide();
});
Your opinion is appreciated.
-- Jörn
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/