Skip to content

Instantly share code, notes, and snippets.

@nicolechung
Created March 9, 2012 18:01
Show Gist options
  • Save nicolechung/2007781 to your computer and use it in GitHub Desktop.
Save nicolechung/2007781 to your computer and use it in GitHub Desktop.
Fancybox: youtube (regular link)
$("#fancybox-youtube-link").click(function(e) {
e.preventDefault();
var url = $(this).attr('href');
$.fancybox({
'width': 660,
'height': 380,
'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
'type': 'iframe' // see this?
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment