> This is still like a proctologist performing an eye surgery

How so?  You have control over everything in the settings object.  And
you can add any properties to it that you wish.  So consider:

$.ajax({
    url: myUrl,
    type: 'post',
    indicatorId: '#indicator3'
});

$().ajaxSend(function(e,xhr,s) {
    $(s.indicatorId).show();
});

$().ajaxComplete(function(e,xhr,s) {
    $(s.indicatorId).hide();
});

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to