Note:    This Script only works on Microsoft Internet Explorer 4/x.Click Here to download it for free.

CLICK HERE


SCRIPT SOURCE


<script language=JavaScript>
function clickHandler() {
var targetId, srcElement, targetElement;
srcElement = window.event.srcElement;
if (srcElement.className == "Outline") {
targetId = srcElement.id + "details";
targetElement = document.all(targetId);
if (targetElement.style.display == "none") {
targetElement.style.display = "";
} else {
targetElement.style.display = "none";
}
}
}

document.onclick = clickHandler;

</script>

To use this script copy and paste the text above in document and to make HTML link copy the following HTML code :
<u id=Out1 class=Outline style="cursor: hand; ">Your link's text here</u> <div id=Out1details style="display:None; position:relative; left:12;"> Your Text or HTML document Here </div>

To make another link, You need to copy and paste same HTML code but you need to change it's id number which is writen in blue color. To change font size change 12 into whatever size you want.


BACK HOME NEXT