Advertisement
Milotronik

SVG Modernizr

Oct 12th, 2014
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.17 KB | None | 0 0
  1. if (!Modernizr.svg) {
  2.   $('img[src$=".svg"]').each(function() {
  3.     var $this = $(this); // this = img
  4.     $this.attr('src', $this.attr('src').replace(/svg$/, 'png'));
  5.   });
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement