I am using the audio element of html in my website. It is working fine, but when I pause the player and go to another page, it restart from the beginning which I do not want. How can I use the common control of audio player for the website? I am new in html multimedia operations, and can not figure this out.
Html code is as follows:
<audio controls>
<source src="lotus_feet.ogg" type="audio/ogg">
<source src="lotus_feet.mp3" type="audio/mpeg">
</audio>
Any ideas would be much appreciated.
Thanks in advance.