Skip to content

Instantly share code, notes, and snippets.

@sampotts
Created January 18, 2015 00:54
Show Gist options
  • Save sampotts/bdca1005c7f4da2dfc69 to your computer and use it in GitHub Desktop.
Save sampotts/bdca1005c7f4da2dfc69 to your computer and use it in GitHub Desktop.
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]);
}
})(document,"../dist/svg/sprite.svg");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment