Created
November 25, 2010 12:04
-
-
Save huytoan/715282 to your computer and use it in GitHub Desktop.
load external js/css file
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
function loadjscssfile(filename, filetype){ | |
if (filetype=="js"){ //if filename is a external JavaScript file | |
var fileref=document.createElement('script') | |
fileref.setAttribute("type","text/javascript") | |
fileref.setAttribute("src", filename) | |
} | |
else if (filetype=="css"){ //if filename is an external CSS file | |
var fileref=document.createElement("link") | |
fileref.setAttribute("rel", "stylesheet") | |
fileref.setAttribute("type", "text/css") | |
fileref.setAttribute("href", filename) | |
} | |
if (typeof fileref!="undefined") | |
document.getElementsByTagName("head")[0].appendChild(fileref) | |
} | |
loadjscssfile("http://dl.dropbox.com/u/2687361/facebookiPad/web/style.css", "css") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment