Inject svg using javascript

This commit is contained in:
Cole Bemis 2017-01-25 20:44:58 -08:00
parent 48269adfe0
commit 3afa82d3db

View File

@ -5,6 +5,21 @@
<title>Feather</title>
</head>
<body>
<a href="svg/air-play.svg">Download air-play</a>
<div class="svg-container"></div>
<script>
const iconName = 'square';
fetch(`./icons/${iconName}.svg`)
.then(response => response.text())
.then(svgText => {
const svgDocument = new DOMParser().parseFromString(svgText, 'image/svg+xml');
const svgIcon = svgDocument.querySelector('svg').cloneNode(true);
const svgContainer = document.querySelector('.svg-container');
svgContainer.appendChild(svgIcon);
});
</script>
</body>
</html>