Hola, este código lo he sacado de otras consultas, pero he añadido la función para el Clic, para que suene otro efecto que no sea el típico clic del navegador.
No me funciona. El Over sí me funciona en Explorer, pero no en Firefox.
Alguien me puede ayudar?
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
function Reproducir(){
document.all.sound.src = "Over.wav"}
function Parar(){
document.all.sound.src = ""}
function Clic(){
document.all.sound.src = "Clic.wav"}
</script>
</head>
<body>
En el Body:
<bgsound id="sound">
<a href="pagina_que_sea" onClick="Reproducir()">Enlace 1</a>
<a href="pagina_que_sea" onmouseover="Reproducir()" onmouseout="Parar()">Enlace 2</a>
</body>
</html>
</body>
</html>
-------------------------------
Gracias de antemano