y

C code posted
created at 24 Aug 09:06

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<markdown>
#!javascript
    (function() {
      function async_load(){
        var s = document.createElement('script');
        s.type = 'text/javascript';
        s.async = true;
        s.src = 'http://yourdomain.com/script.js';
        var x = document.getElementsByTagName('script')[0];
        x.parentNode.insertBefore(s, x);
    }    
    if (window.attachEvent)
      window.attachEvent('onload', async_load);
    else
      window.addEventListener('load', async_load, false);
    })();
</markdown>
478 Bytes in 495 ms with coderay