Created
April 7, 2013 23:43
-
-
Save xerxesb/5333129 to your computer and use it in GitHub Desktop.
Revisions
-
xerxesb revised this gist
Apr 7, 2013 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ /* Modified from http://www.javascriptkit.com/javatutors/loadjavascriptcss.shtml */ var url= ""; var fileref = document.createElement('script'); fileref.setAttribute("type","text/javascript"); fileref.setAttribute("src", url); document.getElementsByTagName("head")[0].appendChild(fileref); -
xerxesb created this gist
Apr 7, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ /* Modified from http://www.javascriptkit.com/javatutors/loadjavascriptcss.shtml */ var url= "" var fileref = document.createElement('script') fileref.setAttribute("type","text/javascript") fileref.setAttribute("src", url) document.getElementsByTagName("head")[0].appendChild(fileref)