How do I check checkbox by clicking on whole row?

I want to basically positionally select - when I click on row, with checkbox I want checkbox to be selected. How would I go and do that? - without having to check checkbox square itself

i aint DobarBREND but i will take a crack at this :grin:

  • make use of “label” fro that checkbox element

happy coding :slight_smile:

  <label>
  <input type="checkbox"><a href="#">Tomahawk is online there</a>
</label>

I did it like this, but that doesnt select the checkbox when I click in that row

@bappyasif

Seems like this is exactly what I need.
Leaving it here for future reference.

    <label>
      <input type="checkbox" name="example">
      <span><a href="#">Sparks Joy</a></span>
    </label>

though i dont see anything “semantically different” about your “marked” solution and that bit which didnt!! but as long as it’s resolved is what matters :slight_smile:

you might also consider something like this, when working with “input” elements

<label for="test">What up!!</label>
<input  id="test" />

happy coding :slight_smile:

you guided me in right way. but it’s necessary for some reason to have that span, apparently. in order to be able to check checkbox by clicking on /near words

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.