> I'm sorry, but exactly how do I set this up.
> Obiously I cannot use this method: testElement.setAttribute()anymore.

use visibility the same way you are using display.

setAttribute("visibility", "hidden");

instead of setAttribute("display", "none");

and

setAttribute("visibility", "visible")

instead of setAttribute("display", "inline") ...

---

you can also use the style attribute

setAttribute("style", "visibility:hidden"); ....


Thierry.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to