Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. function bfLoadScripts(strPath) {
  2. var r = false;
  3. var scriptTag = document.createElement('script');
  4. scriptTag.src = strPath;
  5. scriptTag.type = 'text/javascript';
  6.  
  7. scriptTag.addEventListener('load',function() {
  8. //alert('JS loaded');
  9. r = true;
  10. });
  11. var headTag = document.getElementsByTagName('head')[0];
  12. headTag.appendChild(scriptTag);
  13. }
  14.  
  15. scriptTag.onload = scriptTag.onreadystatechange = function() {
  16. if ( !r && (!this.readyState || this.readyState == 'complete') ) {
  17. r = true;
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement