Ads 468x60px

Pages

Blogroll

Thursday, December 29, 2011

Show Loading bar at the time of page loading


    <script type="text/javascript">

        $(window).load(function () {
            show();
        });
        function show() {

            $('#loading').hide();           
            $("#mainDiv").css("visibility", "visible");
        };
    </script>

<style type="text/css">
        #mainDiv
        {
            visibility:hidden;
        }
</style>


<body>
    <div id="loading">
        Loading......................
    </div>
    <div id="mainDiv ">
     write your main html content here....
    </div>
</body>


0 comments:

Post a Comment