For my print script I need to expand some tables which are not visible (style.display = 'none'). When I go through my site using this script:
var allTables = document.body.getElementsByTagName("TABLE");
for (i=0; i < allTables.length; i++) {
if (allTables[i].style.display == 'none') {...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.