ananth85
09-26-2011, 07:25 AM
When url start loading at the fraction of second i need to display "the page is loading" message in perl.
|
Click to See Complete Forum and Search --> : When URL starts ananth85 09-26-2011, 07:25 AM When url start loading at the fraction of second i need to display "the page is loading" message in perl. Sixtease 09-29-2011, 04:37 AM Assuming you want to display it in the browser, it's not a Perl matter but a HTML/JavaScript matter. Something like this could fix it: <body> <div id="loading-msg" style="position: fixed; width: 100%; height: 100%; text-align: center; padding-top: 200px; font-size: 30px;"> the page is loading </div> <!-- rest of your body here --> <style>#loading-msg { display: none; }</style> </body> webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |