Re: [struts-dev] html:form generates invalid xhml

2008-02-07 Thread Keith Winkler
script type=text/javascript //![CDATA[ code goes here. //]] /script Maybe this solution can be used to ensure xhtml conformance? Right. That was the solution arrived at in the bug report discussion I referenced. But the patch seems to have never made it into the software. Since the

Re: [struts-dev] html:form generates invalid xhml

2008-02-07 Thread Dale Newfield
Keith Winkler wrote: Which is not really valid xhtml on account of the un-escaped characters. The standard solution for this is wrapping your js code with the following javascript comments/xml CDATA declaration: script type=text/javascript //![CDATA[ code goes here. //]] /script Maybe