Im trying to learn HTML audio player from this website: http://www.alexkatz.me/html5-audio/building-a-custom-html5-audio-player-with-javascript/
There is his code: http://codepen.io/katzkode/pen/Kfgix
heres my code: http://codepen.io/anon/pen/mjxFu
HTML:
<div id="audioPlayer">
<button id="pButton" class="play" onclick="play()"></button>
<div id="timeline">
<div id=playHead></div>
</div>
</div>
CSS:
#audioPlayer {
width:600px;
height:100px;
border:2px solid black;
margin-left:auto;
margin-right:auto;
position:relative;
top:300px;
}
#pButton {
position:absolute;
left:30px;
width:50px;
height:50px;
border:none;
top:25px;
}
.play {background:url('play.png')no-repeat;}
.pause{background:url('pause.png') no-repeat;}
JavaScript:
var music = document.getElementById('music');
var pButton = document.getElementById('pButton');
function play(){
if(music.paused){
music.play();
pButton.className = "";
pButton.className = "play";
}else{
music.pause();
pButton.className = "";
pButton.className = "pause";
}
}
I am just trying to make the player play the music, it plays it in the codepen but not in my browser, does anybody knows where could be the problem? My debugger says
Uncaught TypeError: Cannot read property 'paused' of null
every time I click on the play/pause button.
And as you can see in codepen, the play and pause buttons start to change after the second click not the first one,any suggestions whys that?
Thank you for your help.