Skip to content

Instantly share code, notes, and snippets.

@gabamnml
Created December 20, 2012 20:38
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 gabamnml/4348358 to your computer and use it in GitHub Desktop.
Save gabamnml/4348358 to your computer and use it in GitHub Desktop.
Add meta tag with javascript
var yourTag=document.createElement('meta');
window.getSelection ? yourTag.name='name' : yourTag.Name='name'
yourTag.content='content';
document.getElementsByTagName('head')[0].appendChild(yourTag);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment