** html help **
** html help **
- Started
- Last post
- 3 Responses
- Dcsign
A simple one for you DHTMLers.. i need to show and hide layers of a table via a link.. effectively a drop down menu.. does any one know the javascript for this...?
thanks in advance! :)
- RAM0
copy&paste to experts-exchange.com :)
- Dcsign0
username... password....
- unfittoprint0
put the content inside an id [ie. myContent]. make a show hide js in your document's head:
function show(id){
(document.getElementById(id).sty... == "none") ? "" : "none";
}and then use this within the link
onClick = "show('myContent')