Skip to content

Instantly share code, notes, and snippets.

@mazuhl
Created May 6, 2010 13:50
Show Gist options
  • Save mazuhl/392141 to your computer and use it in GitHub Desktop.
Save mazuhl/392141 to your computer and use it in GitHub Desktop.
Bookmarklet to add stylesheet to web page
javascript: (function () {
var linkNode = document.createElement('link');
linkNode.rel = 'stylesheet';
linkNode.href = 'http://www.website.com/stylesheets/style.css';
document.getElementsByTagName('head')[0].appendChild(linkNode);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment