Skip to content

Instantly share code, notes, and snippets.

@ps-team
Created March 15, 2016 11:52
Show Gist options
  • Save ps-team/50e3426e0b4958d75331 to your computer and use it in GitHub Desktop.
Save ps-team/50e3426e0b4958d75331 to your computer and use it in GitHub Desktop.
var ajax = new XMLHttpRequest();
ajax.open("GET", "svg/sprite.svg", true);
ajax.send();
ajax.onload = function(e) {
var div = document.createElement("div");
div.innerHTML = ajax.responseText;
document.body.insertBefore(div, document.body.childNodes[0]);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment