** html help **
** html help **
Out of context: Reply #3
- Started
- Last post
- 3 Responses
- 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')