Focal Point
Hide Select List

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/5851048331

March 30, 2005, 02:13 PM
CHERI
Hide Select List
To All You JavaScripters:
Does anyone know how to hide a select list upon entry into a html page ?
March 30, 2005, 02:56 PM
<JG>
Two questions have got to be asked.

Why do you want to hide it? And when do you want it to appear?

The second question is the most important.
March 30, 2005, 02:56 PM
<Grzegorz>
One of the methods: object.style.display = "none" - to hide
and object.style.display = "" - to show

For example:




Hidden select
<script type="text/javascript">
function hideSelect() {
var select = document.getElementById("selectToHide");
select.style.display="none";
}









Hope this helps
Grzegorz

This message has been edited. Last edited by: <Mabel>,
March 30, 2005, 03:26 PM
reFOCUSing
This is not an answer to your question but you may find this site helpful.

Javascript
March 30, 2005, 06:18 PM
CHERI
Thanks Everyone. I got it working.