/ Published in: JavaScript
URL: http://bmky.net/diary/log/1368.html
this script need "function btoa" http://snipplr.com/view/702/base64encode/
Expand |
Embed | Plain Text
function addStyle( selector, property ) { var cssText = selector + "{" + property + "}"; var href = "data:text/html;charset=utf-8;base64," + btoa( cssText ); createStyleSheet( href ); } function createStyleSheet( href ) { var link = document.createElement( "link" ); link.rel = "stylesheet"; link.href = href; link.type = "text/css"; var head = document.getElementsByTagName( "head" ).item( 0 ); head.appendChild( link ); }
You need to login to post a comment.
