isHidden function
Refer to Jquery
Implementation
bool isHidden(Element e) {
//if (e.style.display != 'none' && e.style.visibility != 'hidden')
//refer to jquery
return (e as HTMLElement).offsetWidth <= 0 && e.offsetHeight <= 0;
}
Refer to Jquery
bool isHidden(Element e) {
//if (e.style.display != 'none' && e.style.visibility != 'hidden')
//refer to jquery
return (e as HTMLElement).offsetWidth <= 0 && e.offsetHeight <= 0;
}