I'm working on a web application, Here look at below this jquery codes:
$(document).ready(function () {
var myPlaylist = new jPlayerPlaylist({
jPlayer: "#jplayer_N",
cssSelectorAncestor: "#jp_container_N"
}, [
{
title: "<Here is song title>",
artist: "<here is artist>",
mp3: "Here is song URL", //Here i want to call URL from anchor tag..
poster: "images/m0.jpg"
}
], {
playlistOptions: {
enableRemoveControls: true,
................
................
Now here is my html code, i want to play this music:
<a href="Music/Linkin_park.mp3">Play Linkin park</a>
<a href="Music/Linkin_park2.mp3">Play Linkin park2</a>
<a href="Music/Linkin_park3.mp3">Play Linkin park3</a>
What should i use in this situation?
Please try this
Hope this be of some help
Happy Learning :)