Created
August 5, 2014 16:25
-
-
Save jprieton/0cc3ec097b5c0058e9de to your computer and use it in GitHub Desktop.
Inyectar CSS al widget de Twitter para personalizar
This file contains 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
$(window).load(function() { | |
var head = $("iframe.twitter-timeline").contents().find("head"); | |
head.append($("<link/>", {rel: "stylesheet", href: "path/absolute/to/css", type: "text/css"})); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment