Skip to content

Instantly share code, notes, and snippets.

@omidnasri
Forked from smonteverdi/gist:2822016
Created December 19, 2016 18:23
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 omidnasri/4008c480352d1955114a718e1d9f8687 to your computer and use it in GitHub Desktop.
Save omidnasri/4008c480352d1955114a718e1d9f8687 to your computer and use it in GitHub Desktop.
jQuery: Display favicon next to external link
$("a[href^='http']").each(function() {
$(this).css({
background: "url(http://www.google.com/s2/u/0/favicons?domain=" + this.hostname +
") left center no-repeat",
"padding-left": "20px"
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment