Skip to content

Instantly share code, notes, and snippets.

@Boorj
Forked from pdewouters/gist:2794478
Created September 20, 2018 12:04
Show Gist options
  • Save Boorj/b518cc67c19ffeafe8ca03148464f1a9 to your computer and use it in GitHub Desktop.
Save Boorj/b518cc67c19ffeafe8ca03148464f1a9 to your computer and use it in GitHub Desktop.
favicon bullet
function getDomain(url) {
return url.match(/:\/\/(.[^/]+)/)[1];
}
$("a[href^='http']").each(function() {
$(this).css({
background: "url(http://www.google.com/s2/u/0/favicons?domain=" + getDomain(this.href) +
") 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