I've seen this before with DHTML.
Code:
<html>
<head>
<!--
This file retrieved from the JS-Examples archives
http://www.js-examples.com
100s of free ready to use scripts, tutorials, forums.
Author: JS-Examples - http://www.js-examples.com/
-->
<script type=text/javascript>
var isNS = navigator.appName.indexOf("Netscape") != -1
var isIE = navigator.appName.indexOf("Microsoft") != -1
function show() {
if (isNS) document.layers["d1"].visibility = "show";
if (isIE) document.all.d1.style.visibility = "visible";
}
function hide() {
if (isNS) document.layers["d1"].visibility = "hide";
if (isIE) document.all.d1.style.visibility = "hidden";
}
</script>
</head>
<body>
<a href="javascript:show()">CLICK ME TO SHOW MESSAGE</a>
<BR><BR>
<a href="javascript:hide()">CLICK ME TO HIDE MESSAGE</a>
<div id="d1" style="visibility:hidden;position:relative;top:10;left:10">
<B>Hidden Message</b>
</div>
</body>
</html>
This may not be exactly what you are lokoing for, but it should help!
Bookmarks