Skip to content

Instantly share code, notes, and snippets.

@swooningfish
Forked from mazuhl/gist:392141
Created March 17, 2014 16:28
Show Gist options
  • Select an option

  • Save swooningfish/9602746 to your computer and use it in GitHub Desktop.

Select an option

Save swooningfish/9602746 to your computer and use it in GitHub Desktop.
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