what do I need to do to make links reveal parts of the website. For example, if they click a link some menu buttons are displayed. I'd prefer not to use a form and I've seen this done. I'm pretty sure it's done with js but I could be wrong. Thanks!
Alternatively, if you just want to make the objects invisible but keep the "placeholder" where they would have normally appeared (to keep your formatting intact) use:
Code:
function ShowHide(obj, show) {
if (show == true)
obj.style.visibility = "visible";
else
obj.style.visibility = "hidden";
}
Hope this helps.
Pete.
Web Developer & Aptrix / IBM Lotus Workplace Web Content Management (LWWCM) Specialist
w:
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.