Friday, July 8, 2011

How to show busy cursor while loading a page in ASP.NET?


Put loading information into one div, and main contain to another div. Then use jQuery ready function to show main content and hide busy cursor
        $(document).ready(function () {
            $('#loadinginfo').hide();
            $('#mainContain').show();
        });

1 comment:

  1. a full code example would have been nice

    ReplyDelete