How can i display a "Page is loading" message(using jquery) in an iframe so that the end-user is not looking at a blank page while the actual page is trying to load?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I would suggest to you that instead of using iframe, you make absolute or fixed positioned div (maybe even overlay over whole screen) and message in it, on the top of your body. Then, in $(document).ready function add
Example:
You can also use $(body).ready instead of $(document), if your message is removed to early, or postpone removing using setTimeout. |
|||||||||
|