Skip to content

Instantly share code, notes, and snippets.

View sampotts's full-sized avatar

Sam Potts sampotts

View GitHub Profile
@sampotts
sampotts / async.js
Created January 18, 2015 00:54
Async SVG sprite/symbol loading
(function(d,p){
var a = new XMLHttpRequest(), b = d.body;
a.open("GET", p, !0);
a.send();
a.onload = function(){
var c = d.createElement("div");
c.style.display = "none";
c.innerHTML = a.responseText;
b.insertBefore(c,b.childNodes[0]);
}