JQuery Ajax control
- by Anycolor
Everybody hi.
There is a problem with my own AJAX library, that I can't solve.
I have some block (#ajax-loading), that has events:
$('#ajax-loading')
.bind('ajaxStart', function() {
$('#ajax-loading').show();
})
.bind('ajaxStop', function() {
$('#ajax-loading').fadeOut(150);
});
For running AJAX I have special method:
run:…