[racket] xexpr to mark a radio button 'checked'
I can't answer your exact question, but from what I understand of web
development, you actually want:
<input type="radio" checked="checked">
http://www.w3schools.com/tags/att_input_checked.asp
Does that help?
Dave
On 04/27/2011 03:11 PM, J G Cho wrote:
> I am trying to print:
> <div><input type="radio" name="n-4-answer" value="2" checked>the egg</div>
>
> The closest I can come up is:
> <div><input type="radio" name="n-4-answer"
> value="2">checked</input>the egg</div>
>
> Valid XML but not quite what a browser wants.
>
> Is this (the first line) possible with xexpr?
>
> jGc
> _________________________________________________
> For list-related administrative tasks:
> http://lists.racket-lang.org/listinfo/users
>