I\'m using fancybox to have a simple vimeo popup: http://fancyapps.com/fancybox/
Here\'s my jQuery:
$(\".fancybox\").fancybox({
openEffect: \'none\',
There could be a few issues however I know the following should work: Change the href to:
//player.vimeo.com/video/36031564?hd=1&autoplay=1&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1
or
http://player.vimeo.com/video/36031564?hd=1&autoplay=1&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1
and add the data-fancybox-type="iframe"
Demo: http://jsfiddle.net/lucuma/9wAdV/180/
$(document).ready(function() {
$('.fancybox').fancybox({
});
});