Skip to content

Instantly share code, notes, and snippets.

@davidsonsousa
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidsonsousa/3387dfdcccc8128cd0db to your computer and use it in GitHub Desktop.
Save davidsonsousa/3387dfdcccc8128cd0db to your computer and use it in GitHub Desktop.
// Creates the script tag
var tag = document.createElement('script');
// Calls the API javascript
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment