Hallo,
danke für deine Antwort.
Das Ganze sieh in etwa so aus:
<html>
<head>
<script language="javascript">
function hideDiv() {
$(function(){$('#sidebar').fadeOut();})
}
function showDiv() {
$(function(){
$('#sidebar').css("display","none").fadeIn();
})
}
</script>
</head>
<body>
...
<td rowspan="3" valign="top">
<div id="inhalt" class="hide" style="border:1px solid black; width:600px; height:486px; background-color:#FAFAFA;">
......
</div>
</td>
....
</body>
</html>
Das DIV-Element soll am Anfang unsichtbar sein. Daher habe ich es so versucht:
<body onload="$(function(){$('#inhalt').css('display','none');})">
Bei dem Klick auf einen Link sollte das DIV-Element dann sichtbar bzw. unsichbar werden.