Last active
December 21, 2015 06:29
-
-
Save mmmattos/6264214 to your computer and use it in GitHub Desktop.
My javascript library.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ========================== | |
// @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