Feedback on: irt.org FAQ Knowledge Base Q390
Worth:
Very worth reading
Length:
Just right
Technical:
Just right
Comments:
Thanks for this site! :)
I first got an "invalid number of arguments" when I ran this in IE.
It's fixed by removing "false" as a parameter:
old:
function playSound() { document.firstSound.play(false); }
new:
function playSound() { document.firstSound.play(); }
Comments:
The code for having a sound play when an item is clicked doesn't work.
Netscape's Javascript console tells me that the named embedded object "has no properties".
Worth:
Very worth reading
Length:
Just right
Technical:
Just right
Comments:
thank you thank you,
I've been doing a lot of googling today just to get to a simple short sollution like the one I read here.