I have multiple objects like below
<input type="checkbox" class="to-labelauty-icon labelauty"
name="inputLableautyNoLabeledCheckbox" data-plugin="labelauty"
data-label="false" id="labelauty-0001" value="tc_Login">
I'm using the code below to get all the checked objects, which give me all the elements which are checked regardless of their visible/hidden status.
$('input[class="to-labelauty-icon labelauty"]:checked')
How can I get only the visible and checked elements?