<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