document.images.navn.style=visibility:hidden
Hvordan får jeg denne kode til at virke, så 02.jpg bliver "hidden" v. mouseover på "hej"???<style type=css/text>
</style>
<script>
var crossFadeDuration = 2;
var p = Pic.length;
function runSlideShow(img){
if (document.all){
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = img;
if (document.all){
document.images.SlideShow.filters.blendTrans.Play();
}
}
</script>
<body>
<table border=2 height="400px" width="400px">
<tr>
<td><img src="02.jpg" name="1"></td>
<td onMouseOver="document.images.1.style="visibility:hidden;"">hej</td>
<td></td>
</tr>
</table>
</body>
