Guest User

Untitled

a guest
Oct 19th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. if(navigator.userAgent.indexOf('MSIE') !== -1 || navigator.appVersion.indexOf('Trident/') > 0)
  2. {
  3. $('*').each(function()
  4. {
  5. if( $(this).is('img[src$=".svg"]') )
  6. {
  7. $(this).attr('src',$(this).attr('src').replace('.svg','.png'));
  8. }
  9. else if( $(this).css('background-image').indexOf('.svg') > -1 )
  10. {
  11. $(this).css('background-image', $(this).css('background-image').replace('.svg','.png'));
  12. }
  13. });
  14. }
Add Comment
Please, Sign In to add comment