Skip to content

Instantly share code, notes, and snippets.

View tburry's full-sized avatar

Todd Burry tburry

View GitHub Profile
@E01T
E01T / gist:5989765
Created July 13, 2013 07:16
Dynamic, cross-browser script loading - from head.js lib
// From the headjs code:
function scriptTag(src, callback) {
var s = doc.createElement('script');
s.type = 'text/' + (src.type || 'javascript');
s.src = src.src || src;
s.async = false;
s.onreadystatechange = s.onload = function() {