Reputation: 15664
Is it possible play song on mouse hover using javascript? If yes then how to code for it.
Upvotes: 2
Views: 673
Reputation: 15484
If your audience is using screen readers it may be possible with aural style sheets:
http://www.w3.org/TR/CSS2/aural.html
blockquote.sad { play-during: url("violins.aiff") }
Upvotes: 1
Reputation: 153
I don't think you can do this with CSS. You can, however, use JavaScript to trigger an audio element to play when any other element is moused over.
Upvotes: 1