I am totally perplexed. I’ve tried maybe 10 different WordPress plugins to try to get a lightbox playing Vimeo. None are working.
I’m manually uploading fancybox 2 to a website I’m building and have followed all of the instructions (as far as I know). It seems like the jQuery isn’t functioning, though all the links are loading.
I’m working with this last example (media helper) to try to get it to work.
HTML
<iframe src="http://player.vimeo.com/video/65191942?title=0&byline=0&portrait=0&color=dd4c23" width="500" height="282" frameborder="0" class="fancybox-media" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> <p>
And javascript is just before the </body>
tag is
<script>
$(document).ready(function() {
$('.fancybox-media').fancybox({
openEffect : 'none',
closeEffect : 'none',
helpers : {
media : { true }
}
});
});
</script>
Again, all css and js files are called in the header just fine.
And you can see it up and running here.
Did you check the console for errors?
I can see these two:
You should fix this error first.
If you look at line 137, you see this:
looks like you have a “,” instead of a “;” to end the first line.