Dave Babbitt wrote:
> 
>               <!--- All the stuff that takes a long to process here --->
>               <script type="text/jscript">
>                       document.all.PleaseWaitMessage.style.display='none';
>               </script>

That is a MS'ism that won't work in other browsers, the standard way is 
to use getElementById(). If you must support non-conforming browsers 
(e.g. Opera) use:

<script type="text/javascript">
if(document.getElementById) {
     document.getElementById('PleaseWaitMessage').style.display='none';
     }
else {
     document.all.PleaseWaitMessage.style.display='none';
     }
</script>

Jochem

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Reply via email to