test jwplayer seek/scrub
testing jwplayer seek issue in audio player
HTML
<script src="http://jwpsrv.com/library/CKT7slhiEeOspBIxOQfUww.js"></script>
<h1>JW Player</h1>
<p>Working seek/scrub</p>
<div id="player">
Player should load here....
</div>
<br>
<p><b>Not</b> working seeking</p>
<div id="player2">
Player should load here....
</div>
<br>
<p><b>One</b> more mp3 for test</p>
<div id="player3">
Player should load here....
</div>
JavaScript
audioSetUp("player","http://download.desidrop.com/omnia.mp3");
audioSetUp("player2","http://download.desidrop.com/537521b5312ab/Rishi feat. Vee - Cry.mp3");
audioSetUp("player3","http://cdn.radiolala.com/J/Janet%20Jackson/24.%20Janet%20Jackson%20-%202nite.mp3")
function audioSetUp(id, url){
jwplayer(id).setup({
file: url,
width: 500,
height: 30,
primary:"flash"
});
}