Using the developer tools in Chrome, you can see an error. Code in the page that works:
$(function() {
// setup player
$f("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", {
clip: {
baseUrl: 'http://blip.tv/file/get',
// this style of configuring the cover image was added in audio
// plugin version 3.2.2
coverImage: { url: 'http://clubztoday.org/clubz1.jpg', scaling: 'orig' }
}
// playlist plugin
}).playlist("#playlist");
});
Code in the page that doesn’t, with the following error: Uncaught SyntaxError: Unexpected token }, index.php:131:
[removed]
$(function() {
// setup player
$f("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", {
clip: {
baseUrl: 'http://blip.tv/file/get',
// this style of configuring the cover image was added in audio
// plugin version 3.2.2
coverImage:
}
// playlist plugin
}).playlist("#playlist");
});
[removed]
That should get you there. I highly recommend the developer tools in Chrome, Safari or firebug in Firefox.