isHidden function
- Element e
Refer to Jquery
Implementation
bool isHidden(Element e) {
//if (e.style.display != 'none' && e.style.visibility != 'hidden')
//refer to jquery
return e.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.offsetWidth <= 0 && e.offsetHeight <= 0;
}