Doug wrote:

> I'm using elementtree to create a form.
> 
> I would like to set the "selected" attribute.
> 
> Setting using the usual
>  option.set( "selected" = "" )

Maybe that should be option.set(selected="selected"). I think

<option selected="selected">

and

<option selected>

are equivalent.

http://www.w3.org/TR/html4/intro/sgmltut.html#h-3.3.4.2

> gives me
>   <option selected="" value="operations">Operations</option>
> how does one make
>   <option selected value="operations">Operations</option>
> which is what I need.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to