Looping through div using css class selector.
eg:
- $(".listDiv").each(function (index) {
- alert($(this).innerHeight());
- });
some div's are display:none
How to skip them. InnerHeight gives Hidden div's also.
Intention is to calculate total height of visible div's