PDA

View Full Version : I need a certain javascript...


technotica
10-12-2002, 08:40 PM
I need a script where you can click on a link at lets say the top of a page and then info shows up on that same page but somewhere else on it like on the right side. Can any1 help?

Mr J
10-12-2002, 10:25 PM
Play around with the following, if you need more info let me know



<script language="javascript">
<!--
function show(text){
document.all.text.innerHTML=text;
}

// -->
</script>
<P><A href="#null" onmouseover="show('Have your own custom text boxes')">Link One</A><BR>
<P><A href="#null" onmouseover="show('Using more attributes you can create some very effective boxes.')">Link two</a><BR>

<div id="text" style="position:absolute;left:500;top:300"></div>

technotica
10-12-2002, 11:24 PM
....dude sweet thanx!