Forum Moderators: not2easy
You will need something like this
<html>
<head>
<script type="text/javascript">
function toggle(id) {
var text = document.getElementById(id);
if (text.style.display!= 'block')
text.style.display = 'block';
else
text.style.display = 'none';
}
</script>
<style>
.text {
display:none;
}
</style>
</head>
<body>
<a href="#" onclick="javascript:toggle('1')">Show/Hide</a>
<div class="text" id="1">
test
</div>
</body>
</html>