Solar Array and home energy dashboard.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
604 B

  1. function loadScript(url, callback){
  2. var script = document.createElement("script")
  3. script.type = "text/javascript";
  4. if (script.readyState){ //IE
  5. script.onreadystatechange = function(){
  6. if (script.readyState == "loaded" ||
  7. script.readyState == "complete"){
  8. script.onreadystatechange = null;
  9. callback();
  10. }
  11. };
  12. } else { //Others
  13. script.onload = function(){
  14. callback();
  15. };
  16. }
  17. script.src = url;
  18. document.getElementsByTagName("head")[0].appendChild(script);
  19. }