There are multiple <input type="checkbox" value="..." />
in the page.
I need to get each of the <input>
that is checked to do some operation.
I'm using jQuery.
There are multiple <input type="checkbox" value="..." />
in the page.
I need to get each of the <input>
that is checked to do some operation.
I'm using jQuery.
or you can use
selector
If all the checkboxes are inside a container then you can narrow the selector by using
You can also try this: