Link to home
Start Free TrialLog in
Avatar of ispcorp
ispcorp

asked on

WAIT WINDOW

Can anybody give me a good example of a static HTML page for a "WAIT WINDOW" popup....No need for javascript, just need an animated progress bar (or status bar), and something that says "Please Wait....".

Thanks.
Avatar of YZlat
YZlat
Flag of United States of America image

you can have a "Please wait" message right on your page:

<HTML>
      <HEAD>
            
            <script language="javascript">
            <!--
                  
function hideWaitMessage() {
     window.waitMessage.innerText = ""
}

            //-->
            </script>
      </HEAD>
      <body MS_POSITIONING="GridLayout" onload="hideWaitMessage();">
            <form id="Form1" method="post" runat="server">
                  <span id="waitMessage">Please wait while the page is loading...</span>
                  <br>
</form>

</body>
</html>
Avatar of praneetha
praneetha

when do u want the message to appear...
ASKER CERTIFIED SOLUTION
Avatar of YZlat
YZlat
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial