javascript get all hidden elements code example
Example: javascript get all hidden elements
$.each($(".box"), function(){
if($(this).is(":hidden")) {
//this element with class 'box' is hidden
}
});