How can you select elements with more attributes?
$('input[type="checkbox"]')
This will select all checkboxes, but how can you specify one more attribute in the selector?
<input type="checkbox" data-test="1" />
How can you select all checkboxes with the data-test attribute set too?
You can chain them like this: