Skip to content

Instantly share code, notes, and snippets.

@mmmattos
Last active December 21, 2015 06:29
Show Gist options
  • Save mmmattos/6264214 to your computer and use it in GitHub Desktop.
Save mmmattos/6264214 to your computer and use it in GitHub Desktop.
My javascript library.
// ==========================
// @name Javascript Library
// @namespace http://profiles.google.com/mmmattos
// @version 0.1
// @description Fubctions to be reused in other scripts.
// @copyright 2013, Miguel Mattos
// ==========================
function addCustomStyle(p_style) {
var tags, head, style;
tags = document.getElementsByTagName('head');
if (!tags || tags.length == 0) { return; }
head = tags[0]
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = p_style;
head.appendChild(style);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment