
Sound and music in Netscape
Background music:
<SOUND SRC="test.mid" LOOP="infinite" DELAY="10">
Where:
LOOP is a number or "infinite"
DELAY is the silence length in secound between loop
Sound on event:
<head>
<script language="JavaScript">
<!--
function playSound() { self.document.ljudet.play() }
-->
</script>
</head>
<body>
<embed name="ljudet" src="chimes.wav" hidden="true" autostart="false" id="sound">
<a href="#" onMouseOver="playSound()">Spela</a>
</body>