loud-links
loud-links copied to clipboard
feature: cache sounds
I would suggest caching the sound effect after the first request. This will prevent the browser from loading the file more than one time.

As you can see, I hovered the logo and the sound file got downloaded on every event.
hmmmm, how do you cache sounds?
I'm not quite sure this will work but my suggestion would be something like this:
onhover (look in array for filename)
if (not exists)
load sound
add filename to array
play sound
otherwise
play sound
This would be solved by the method I mention under #2
+1