views:

205

answers:

1

I'm intercepting server response via datatype, but I've noticed that the loading.. message is lacking! How can I trigger it ?

+4  A: 

$(".loading").css("display", "block");

Then to hide it after the data loads you can use: $(".loading").css("display", "none");

John Wingate
That was very helpful thanks buddy.
ZeroCool