On Fri, 2002-11-29 at 02:55, Antony Quinn wrote: > Michael, > > I had a similar problem with <script> tags in IE. > > Xerces (quite rightly) converts <script src="some.js"></script> to <script > src="some.js"/>. This is fine in Mozilla but IE won't accept it. > > The only solution I found is to be a full-top (period) between the tags, ie: > <script src="some.js">.</script> > > I guess you don't want to have full-stops or other characters appearing > between your <textarea> tags. > > Does anyone have a better solution? > > Regards/mvh, > > Antony
Well, perhaps you could put some whitespace between the opening and closing tags, then set preserve-space to true for the troublesome elements? That might prevent the serializer from coalescing the begin and end tags. Cheers, Simon --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
