On 12/8/06, Böhringer Jochen <[EMAIL PROTECTED]> wrote:
Thanks a lot! This made it work:writer.writeAttribute("defer", Boolean.TRUE, null); In my code I had writer.writeAttribute("defer", "true", null);
FWIW, <script defer="true"> isn't valid HTML; defer is a boolean attribute, which means the only legit output is either: <script defer type="..."> or <script defer="defer" type="..."> -- Adam
