Re: JavaScript messes up validator

* Robert J. Accettura wrote:
>When the following code is passed through it catches the </object> tag, 
>but doesn't see that one is opened.  Since the code was fine before it 
>was put into a javascript, I think it might be a bug.

A bug in your code. You need to escape sequences of < + / + Letter, e.g.
'...</' + 'object>...' or "<\/object" or something like that.

Received on Saturday, 4 January 2003 23:42:35 UTC