[lxml-dev] problem with e-factory input text field

Armin Ronacher armin.ronacher at active-4.com
Mon Jul 14 14:03:28 CEST 2008


Hi,

<Dominique.Holzwarth <at> ch.delarue.com> writes:

> <input type="checkbox" name="something" value="1">label text</input>
That's not valid HTML.  What you are looking for is this::

   <input type="checkbox" name="something" id="something_cb">
   <label for="something_cb">label text</label>

Regards,
Armin



More information about the lxml-dev mailing list