In this example we can Play sound and event when mouse over
Quote:
<html>
<head>
<script Language="JavaScript">
<!--
function PlaySound(MySound) {
document.location.href=Mysound;
}
//-->
</script>
</head>
<Body>
<a href="MyLink.html" onMouseOver="PlaySound('tralala.wav')">Move your mouse over me...</a>
</body>
</html>
|