| Subject: | Re: Fake # Link without jumping up page |
|---|---|
| From: | "ecampbel" <webforumsuser@xxxxxxxxxxxxxx> |
| Date: | Thu, 28 Feb 2008 15:50:32 +0000 (UTC) |
| Newsgroups: | macromedia.dynamic.html |
<a href="#" onclick="showStuff('test1'); return false;" title="Click to see
testimonial">...Link...</a>
<span id="test1" style="display: none;"><p>...Text...</p></span>
HERE is javascript showStuff('test1').................
<script type="text/JavaScript">
<!--
//function to display or hide a given element
function showStuff(id) {
var obj = document.getElementById(id);
if (obj.style.display == 'none'){
document.getElementById(id).style.display = 'block';
} else {
document.getElementById(id).style.display = 'none';
}
}
//-->
</script>
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | HTML FORM POST SUBMIT ISSUE, ecampbel |
|---|---|
| Next by Date: | Re: Fake # Link without jumping up page, ecampbel |
| Previous by Thread: | Fake # Link without jumping up page, bentrill2 |
| Next by Thread: | Re: Fake # Link without jumping up page, ecampbel |
| Indexes: | [Date] [Thread] [Top] [All Lists] |