<html><head></head> <body><div style="cursor: hand" onclick="toggle(HideShow);"> Click Here</div><span style="color: blue" id="HideShow">This text will go away, but the space it occupies will remain.<br></span>This is some text<script> function toggle(e) { if (e.style.visibility == "hidden") { e.style.visibility = "visible"; } else { e.style.visibility = "hidden"; }}</script></html>