I\'m using fancybox to have a simple vimeo popup: http://fancyapps.com/fancybox/
Here\'s my jQuery:
$(\".fancybox\").fancybox({ openEffect: \'none\',
You just need two more things:
1). add the fancybox-media helper js file like (check your own path):
js
2). add the helpers media option to your script:
$(".fancybox").fancybox({ openEffect: 'none', closeEffect: 'none', padding: 0, //<-- notice I added a comma here ;) helpers : { media : {} } });