Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: "Mel Smith" Newsgroups: comp.lang.javascript Subject: Showing a 'Waiting ...' Message Date: Tue, 13 Dec 2011 10:26:34 -0700 Lines: 30 Message-ID: <9kpg77Fu2fU1@mid.individual.net> X-Trace: individual.net ZbTxju2vkgzq2d92iLDvTQAqiqo6uECXuebx/l2hpfXvDJSjhw Cancel-Lock: sha1:j5t6C01HXHcZyFtP8cXVWRCtRgQ= X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Xref: x330-a1.tempe.blueboxinc.net comp.lang.javascript:9190 Hi: Because of some great help from Denis McMahon last March, I've been showing / sorting big tables with no problem The only problem I have is displaying a 'Waiting for Sort to Complete ...' message on the screen during the interval that sorting is taking place. The 'Wait' Message *does* display if I follow it with an Alert() message. Otherwise, it does *not* display. Is there some other way to *force* this following function to display ?? // **** here is the 'wait' message function **** function showwaitmsg() { var el = document.getElementById("sorttext") el.style.color="white"; el.style.background="red" ; el.value = " Sorting ... " ; // in IE7 and also Chrome, this doesn't display UNLESS you show an alert() message first return ; } // **** end of wait message function **** Thanks for any hints provided ! -- Mel Smith