Is there any way to hide a web bot? I have a search bot that I don't want
to show unless the user selects it from a drop down list. I can't seem to
figure out how to hide the web bot.

TIA
RC-

Re: Hide Web Bot Element by RC-

RC-
Wed Sep 29 17:25:16 CDT 2004

I figured out a way to hide it. I created a layer and gave the layer an id.
Then using the following code, I was able to hide (and un-hide) the bot
element

code:
document.getElementById("searchbot").style.display = "none"; hides the
element
document.getElementById("searchbot").style.display = "block"; displays
the element

"RC-" <r_candee@hotmail.com> wrote in message
news:%238F%23OnmpEHA.1644@tk2msftngp13.phx.gbl...
> Is there any way to hide a web bot? I have a search bot that I don't want
> to show unless the user selects it from a drop down list. I can't seem to
> figure out how to hide the web bot.
>
> TIA
> RC-
>