I am trying to use jQuery Fancybox to popup a youtube video from a website. I have followed the instructions from the fancybox.net site, but no joy, the video simply appears inline.
I have all the .js files in place, the .css file in place, but as you can see here: http://www.rouviere.com/~idp2/ideaPeople.html clicking on the image only brings up the video inline.
It should work like the video link here: http://fancybox.net/example but it doesn't.
Here is the code:
$(document).ready(function() {
$("a#single_1").fancybox();
$("a#single_2").fancybox({
'zoomOpacity' : true,
'overlayShow' : false,
'zoomSpeedIn' : 500,
'zoomSpeedOut' : 500
});
$("a#single_3").fancybox({
'overlayShow' : false,
'zoomSpeedIn' : 600,
'zoomSpeedOut' : 500,
'easingIn' : 'easeOutBack',
'easingOut' : 'easeInBack'
});
$("a.group").fancybox({
'hideOnContentClick': false
});
});