I want an image to play a sound when you press it but
This is what I have done so far
<img class="bilde" src="https://bnetcmsus-a.akamaihd.net/cms/gallery/04K7223BD7AU1446613320846.png"/>
I want an image to play a sound when you press it but
This is what I have done so far
<img class="bilde" src="https://bnetcmsus-a.akamaihd.net/cms/gallery/04K7223BD7AU1446613320846.png"/>
You should be able to do this if you can use HTML5.
<audio id="sound" src="hello.mp3"></audio>
<img onclick="document.getElementById('sound').play()" class="bilde" src="https://bnetcmsus-a.akamaihd.net/cms/gallery/04K7223BD7AU1446613320846.png">