Hey guys and gals am i doing something wrong? trying to get the drplayer to work. here is what i am doing.
<script>
$(document).ready(function(){
$("#playlist").playlist(
{
playerurl: "js/drplayer.swf"
);
</script>
Any help would be awesome.
Cheers
Lester
Do you get any errors on your console?
Test it on Chrome or Firefox and you should have some error/warning there if it’s not working. Paste those errors here if they are showing.
You’re not closing your functions properly, the document ready function isn’t closed at all :/
Try this;
<script>
$(document).ready(function(){
$("#playlist").playlist({ playerurl: "js/drplayer.swf" });
});
</script>
Thanks Tommus
That fixed it.
Cheers
Lester
Woop
No worries dude 
