Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // http://css-tricks.com/svg-use-external-source/
- // Instead of using "SVG for Everybody" to handle IE, maybe we could just load the SVG
- // into the page itself?
- $("svg>use").each(function(){
- svgAddress = $(this).attr("xlink:href").replace("#"," #"); // jQuery "load" needs a space between the page and id
- $(this).parent().load(svgAddress);
- });
Advertisement
Add Comment
Please, Sign In to add comment