Re: [xml-dev] Boolean attributes in XHTML/HTML5

From
Rob Koberg <>
To
Date
2012-02-10T17:28:21Z
ID
<CAEku0usn2MBZo1129SEMiMKA53g6TiwmEAZ==->
Thread
Re: [xml-dev] Boolean attributes in XHTML/HTML5
This has been a pain for me too especially when using XSL to generate
to a runtime dynamic page:

http://lists.w3.org/Archives/Public/www-html/2005Mar/0031.html

I ended up generating things like:

<input class="radio" type="radio" id="previoustrue" value="true"
title="previous${focusObject.previous eq true ?'&#34;
checked=&#34;checked' : ''}" name="previous${readOnly ?'&#34;
disabled=&#34;disabled':''}"/>

-Rob