Is it possible to use HTML5 to make a sound when a user hovers over one of my list item buttons? I'd like to play a very short click/chirp sound one time when a user hovers over a navigation button. I realize it won't be compatible on every browser or device and that's OK as long as it degrades gracefully. Would it be better to use Flash for this for some reason?

Edit
Also, if it's possible to do this I'd be interested in some sample code, including the javascript (if javascript is needed). I'm OK with HTML but not too handy with Javascript.

link|improve this question

I would like to mention that this is a really bad idea from a usability perspective. I get super super annoyed just from the stupid 'clicks' IE makes everytime I follow a link when testing IE functionality. I can't imagine I would stay on your site for long if little beeps started chirping out as I moved my mouse around. Bad idea! – nzifnab Mar 10 '11 at 18:25
1  
nzifnab - very much agree even though I posted the question. – HK1 Mar 10 '11 at 19:19
feedback

2 Answers

up vote 5 down vote accepted

I’ve not done anything like this, but it should be possible. E.g.

<audio id="myaudio" src="myaudio.mp3"></audio>

<button onmouseover="document.getElementById('myaudio').play()">Hover me</button>

I’m not familiar with Flash, so I’m not sure if you can use JavaScript to get a Flash file to play.

link|improve this answer
1  
Flash can interact with javascript and vice versa - but for this it's not really necessary. – nzifnab Mar 10 '11 at 18:27
feedback

I'd not recommend a sound on a hover. Users can get annoyed very easily (I would).

In any case, here's how, and it doesn't need HTML5:

1) Have a simple javascript to play the sound

<script>
    function EvalSound(soundobj) {
        var thissound=document.getElementById(soundobj);
        try {
            thissound.Play(); //Quicktime, Windows Media Player, etc.
        }
        catch (e) {
            thissound.DoPlay(); //Real Player
        }
    }
</script>

2) Make an invisible embed with the sound

<embed src="mysound.wav" 
       autostart=false 
       width=0 
       height=0 
       id="mySound" 
       enablejavascript="true" />

3) Make it play on hover

<ul id="myList">
    <li onHover="EvalSound('mySound')">Foo</li>
    <li onHover="EvalSound('mySound')">Bar</li>
</ul>

Alternatively, attach event with jQuery:

<script>
    $(document).ready(function() {
        $('#myList').hover(EvalSound('mySound'));
    });
</script>

Edited because realplayer uses DoPlay() instead of Play().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.