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