in reply to Re: Generating a 'please wait' message
in thread Generating a 'please wait' message

I see what you are saying with "watching the HTML". Unfortunately, the HTML code generated by the script is in a table cell that runs the entire length of the page. It sounds like your second soltution may offer a possibility...and something else I need to learn!
  • Comment on Re: Re: Generating a 'please wait' message

Replies are listed 'Best First'.
Re: Generating a 'please wait' message
by cLive ;-) (Prior) on Apr 13, 2001 at 03:09 UTC
    Why not split your HTML into two batches? It would be easy for you to add a "please wait" table to the top of your page and then the rest underneath - heck, if layout is important, why not split your existing table into two - with the first half containing the 'wait' message? I'm sure you could work it out!

    "It sounds like your second solution may offer a possibility.." - don't make life complicated if you don't need to!

    cLive ;-)

Re: Re: Re: Generating a 'please wait' message
by sierrathedog04 (Hermit) on Apr 13, 2001 at 00:48 UTC
    You can often avoid using HTML tables by using Cascading Style Sheets instead. I used to try and do this a lot, and it worked great with the Internet Explorer and Opera browsers.

    The problem is that Netscape 4.x does not really support stylesheets in a meaningful way. So while IE and Opera users would see my page, Netscape 4.x users would get a blank page.

    Several years ago there were a lot of complaints about Netscape's inadequate support for CSS. I do not know whether they have fixed the problem.

    But I would say consider using CSS instead of tables to format your output, and then see whether any Netscape browser versions that you wish to support have fixed Netscape's CSS problems.