Hi, I would like to show a status label above all other HTML elements
when a certain function is fired. (for example: "Calculating..."

I tried playing with .zIndex, .Display="none" and .Visible properties
but none of the seem to be working for [web forms label] or Iframe (I
use IFRAME to show label above ActiveX control)

What is the easiest way for me to show hide information/status labels
on a web form?

document.getElementById("lblInfo").????

Thank you,

Sergey

Re: Hide/Show HTML Elements by sxzy

sxzy
Tue Nov 01 14:37:34 CST 2005

I found it:
elementReference.style.visibility = 'hidden'
to hide a page element including a form element and
elementReference.style.visibility = 'visible'
to show it again.

for some reason I have hard time finding easy to navigate help from
microsoft regarding HTML elements properties and methods


Re: Hide/Show HTML Elements by Brian

Brian
Tue Nov 01 15:29:28 CST 2005

> for some reason I have hard time finding easy to navigate help from
> microsoft regarding HTML elements properties and methods

http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/refere
nce/dhtml_reference_entry.asp?frame=true

Brian