Note: This Script only works on Microsoft Internet Explorer 4/x.Click Here to download it for free.
CLICK HERE
If you are using Microsoft Internet Explorer 4/x then this text was not here before it apper after clicking on the link. Here you can add any kind of tables, Images, Forms etc. To add any Images or tables just use your normal HTML tags.
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.