I carefully used the quick start guide on your site to enter what I
thought was the proper code for my website.
The player shows up on my page, but the music will not play. Can
someone look at the code below and tell me what I'm doing wrong??
I use GoDaddy.com as a host...maybe they're not compatible or
something?
<html>
<head>
<link type="text/css" href="/skin/jplayer.blue.monday.css"
rel="stylesheet" />
<script type="text/javascript" src="
http://ajax.googleapis.com/ajax/
libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript" src="/js/jquery.jplayer.min.js"></
script>
<script type="text/javascript">
$(document).ready(function(){
$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
mp3: "
http://www.rockinrusty.com/music/01-
five_finger_death_punch-over_and_under_it1.mp3"
});
},
swfPath: "/js",
supplied: "mp3"
});
});
</script>
</head>
<body>
<div id="jquery_jplayer_1" class="jp-jplayer"></div>
<div class="jp-audio">
<div class="jp-type-single">
<div id="jp_interface_1" class="jp-interface">
<ul class="jp-controls">
<li><a href="#" class="jp-play" tabindex="1">play</a></li>
<li><a href="#" class="jp-pause" tabindex="1">pause</a></li>
<li><a href="#" class="jp-stop" tabindex="1">stop</a></li>
<li><a href="#" class="jp-mute" tabindex="1">mute</a></li>
<li><a href="#" class="jp-unmute" tabindex="1">unmute</a></
li>
</ul>
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"></div>
</div>
</div>
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
<div class="jp-current-time"></div>
<div class="jp-duration"></div>
</div>
<div id="jp_playlist_1" class="jp-playlist">
<ul>
<li>F5DP - "Under & Over It" (single)</li>
</ul>
</div>
</div>
</div>
</body>
</html>
</center>