Skip to content

Instantly share code, notes, and snippets.

@ronan-gloo
Created August 31, 2012 09:45
Show Gist options
  • Save ronan-gloo/3550934 to your computer and use it in GitHub Desktop.
Save ronan-gloo/3550934 to your computer and use it in GitHub Desktop.
Fancybox html5 video iframe fullscreen
$('.fancybox').fancybox({
afterLoad: function(e) {
$(e.inner).find('iframe').attr({
'webkitallowfullscreen': true,
'mozallowfullscreen': true
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment