Hey, im trying to hide some information on one of my page and then with javascript get it visible again. First I thought I could use the style "visibility:hidden;" but that will only remove the visibility and not the space the tag uses.
I could do it with ajax but I dont want any loading time and i already took the information out when i first loaded the page the first time.
I know how i can remove the td tag but im not sure how to show the info again because I would then remove the tag for good (until you reload the page of course)
edit:
found out that I can use:
style.display = 'none';
But if i load the javascript in the body onload function it will first show and then get removed, is it possible to have it hidden right away?



Reply With Quote

Bookmarks