Let the user Hide Text / Object

This text will be hidden when you klick the link
Hide text!






Put this between your HEAD-tags
<title>JavaScript</title>
<script language="JavaScript">
function hide() {
myObject.style.display='none'
}
</script>

<style>
#myObject {position:absolute; top: 130px; left: 370px}
</style>


Put this between your BODY-tags
<div id="myObject">Text / object to hide..</div>
<a href="javascript:hide()">Hide text!</a>


Free JavaScripts provided
by Winfolinx.com




Back