--- On Tue, 12/9/08, RudyG wrote:
> I have an odd problem that I can't seem to resolve.

Not really a Struts issue, though.

> function splashScreen() {
>       document.write("...");
>       document.forms[0].submit();
>       return true;
> }
> 
> However the problem is that after the document write is
> executed the processing stops.

I'm not sure what the browser if it got a document.write() after the page has 
been rendered--as you've discovered the browser isn't sure what to do either.

It's reasonable to conclude that this is an inappropriate way to change DOM 
content after the page has been rendered. A web search will turn up about a 
hundred trillion hits for a variety of ways to do what you're trying to do.

Dave


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to