код PlaySound("sound1"); при вызове скачивает файл sms.wav а не проигрывает
код PlaySound("sound1"); при вызове скачивает файл sms.wav а не проигрывает
<embed src="sms.wav" autostart="false" width="0" height="0" id="sound1" enablejavascript="true">
function PlaySound(soundObj) {
var sound = document.getElementById(soundObj);
sound.Play();
}
|