function playSoundO
var audioElement = document.getElementByldf "player" ); if( audioElement )
audioElement.Controls = true; audioElement.play();
function toggleControls() {
var audioElement = document.getElementById( "player if( audioElement )
audioElement.Controls = !audioElement.Controls;
---
I Odtwórz I TZatizyniai I fWlącz/wytącz panel 1
<body>
<audio id="player" src="rock.ogg">
Ta przeglądarka nie odtwarza dźwięku.
</audio>
onclick="playSound()" />
<P>
<input type="button" value="Odtwórz"
<input type="button" value="Zatrzymaj" onclick="pauseSound()" />
<input type="button" value="Wlącz/wylącz panel" onclick="toggleControls()" </p>
</body>