I want to get all inputs that are checked and not hidden
This doesn't work:
.formyform input:checked:not(:hidden)
Is there a simple way to do it?
I couldn't find any example on the jQuery site
I want to get all inputs that are checked and not hidden
This doesn't work:
.formyform input:checked:not(:hidden)
Is there a simple way to do it?
I couldn't find any example on the jQuery site
What you have should work, though you can simplify it with :visible
:
.formyform input:checked:visible
You can test it out here.