I have a lot of Ajax indicators in a Page. Now I use
$(document).ajaxStart(function() {
$('#ajaxBusyIndicator_<%=partido.PartidoId.ToString()%>').css({ display: "inline" });
}).ajaxStop(function() {
$('#ajaxBusyIndicator_<%=partido.PartidoId.ToString()%>').hide();
});
The problem with this is that I get all the indicators to show Any way to Show only one?
I use asp.net mvc
UPDATE: The Problem is how in the $(document).ajaxStart(function() { know what indicator to show