Skip to content

Instantly share code, notes, and snippets.

@shohagbhuiyan
shohagbhuiyan / svg.js
Last active July 27, 2017 05:05 — forked from schmidt1024/svg.js
Replace all SVG images with inline SVG using jQuery
/*
* Replace all SVG images with inline SVG
*/
//if img has svg, change it!
jQuery('img').filter(function() {
return this.src.match(/.*\.svg$/);
}).each(function(){
var $img = jQuery(this);
var imgID = $img.attr('id');