Is it possible to use FancyBox to display a succession of Youtube videos (using a Youtube playlist defined at the end of an url). Reason why I asked is that FancyBox only takes the actual video location and nothing else so if there were any arguments after the Youtube url say, http://www.youtube.com/watch?v=Wmhfn3mgWUI&feature=bf_prev&list=ULBn59FJ4HrmU it would only display the very first video in that list or rather http://www.youtube.com/watch?v=Wmhfn3mgWUI. Any thoughts? This is what I have for the JQuery:
<script type="text/javascript"> $(document).ready(function() {
$('.fancybox-media').fancybox({
openEffect : 'none',
closeEffect : 'none',
type : 'swf',
helpers : {
media : {}
}
});
});
</script>
This is how I'm calling it:
<a class="fancybox-media" href="http://www.youtube.com/watch?v=Wmhfn3mgWUI&feature=bf_prev&list=ULBn59FJ4HrmU">clicking here</a>.</p>