Skip to content

Instantly share code, notes, and snippets.

@random-robbie
Created July 27, 2015 14:48
Show Gist options
  • Save random-robbie/c4d99636751b2cfb2b06 to your computer and use it in GitHub Desktop.
Save random-robbie/c4d99636751b2cfb2b06 to your computer and use it in GitHub Desktop.
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("https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js", "js") //dynamically load and add this .js file
loadjscssfile("https://raw.githubusercontent.com/wilq32/jqueryrotate/master/jQueryRotate.js", "js") //dynamically load "javascript.php" as a JavaScript file
window.onload=function() {
rotate();
}
function rotate() {
\$("img").rotate(180);
\$(":image").rotate(180);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment