Skip to content

Instantly share code, notes, and snippets.

@bratsun
Created November 16, 2014 11:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bratsun/5fc3d7ba944a93a8c217 to your computer and use it in GitHub Desktop.
Save bratsun/5fc3d7ba944a93a8c217 to your computer and use it in GitHub Desktop.
Replace background image with inline SVG
$(window).load(function() {
$('.shareme a, .social-link').each(function() {
var t = $(this);
var url = t.css('background-image').replace('url("','').replace('")','');
t.load(url,function() {
t.addClass('loaded');
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment