Is there a way to get fields that are hidden because of the CSS overflow?
$('input:not('visible')')
does not do the trick!
Is there a way to get fields that are hidden because of the CSS overflow?
$('input:not('visible')')
does not do the trick!
var visible = $('input').filter(function() {
return ($(this).css('visibility') == 'hidden' || $(this).css('display') == 'none');
});