Here's some more javascript stuff which you too can use in order to achieve yet another truly amazing affect. Boggle the minds of your readers and make new friends. Just click on the following button to find out for yourself:
Now you see me...
For all those brave Javascript folks out there looking for the means of achieving this excitement, here is the required code:
<script language="javascript" type="text/javascript">
<!--
function hx3(btn) {
if (document.getElementById) {
var lbl = document.getElementById("hiddenpart");
if (lbl.style.display == "none") {
lbl.style.display = "block";
btn.value = "Less <<";
} else {
lbl.style.display = "none";
btn.value = "More >>";
}
} else {
alert('Sorry, your browser doesn't support this.');
}
return false;
}
//-->
</script>
<input name="submit" type="submit" class="button"
value="More >>" onclick="return hx3(this)" />
<div id="hiddenpart" style="display:none">
<br />
<h1>Now you see me ...</h1>
<br />
</div>
It is hard to believe how much one can accomplish with just a few lines of code, don't you think?
Cool! Very creative! Can you sell these scripts somewhere??
Money, did you say? Who needs money? These are snippets of pure creative power and nothing else. Money would not do them justice.
Are you sure that these script can be work on Netscape???