Selector to find elements which are all have a particular class name.
Selector to find elements which are all have a particular class name.
[js]
$(".container").find(".boxcheckbox")
[/js]
Here .container is my parent class name and .boxcheckbox is the class name for the element to be find.