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
2009-11-05 18:59:48
That was very helpful thanks buddy.
ZeroCool
2009-11-30 08:58:14