dorayme scribed:
>In article
><97178bad-7966-4c7a-99b9-
>m>,
> wrote:
>
>> hi there
>> im a student in need of help. can anyone give me the code to make text
>> appear just below a link when clicked(not a pop-up)??
>
>Like this:
>
>http://netweaver.com.au/alt/link.html
That's one way. Another way would be to use a div containing the hidden text
and use javascript to change the display style of that div. E.g.,
function show(div_id) {
target = document.getElementById(div_id);
target.style.display = "";
}
<a href="#" onclick="javascript
:showDiv('div_to_show');">Click Me</a>
<div id="div_to_show" style="display:none;">
All your hidden text.....
</div>
--
Ed Jay (remove 'M' to respond by email)