Hello, I want make the seconds actions with JavaScript: 1. On opening the web page showing the text: “downloading page…†2. When page 100 % is transferred remove text: “downloading page…†and open the web page. In this case my question is. How I can detect are web page in progress transferring or is completed transferring? Or maybe impossible detect the web page transferring?
Try pushing "loading..." right at the beginning of the server-side script (i.e. no buffering on the web server) and then hide "loading..." in the onload handler (e.g. give it an ID and set its display to none). In general, though, it is better not to use such tricks - if your visitor disables JS, they will end up with "loading..." at the top of the page. You can also use URL refresh, if there's a background process that prepares results for a subsequent hit. J.D.
Thanks for answer. I am solve my problems with JavaScript. QuickTime having owner JavaScript function GetMaxBytesLoaded() and GetMovieSize(). In this case i can showing progress bar. For more: http://developer.apple.com/documentation/QuickTime/Conceptual/QTScripting_JavaScript/index.html