Skip to content

Instantly share code, notes, and snippets.

@mostlyfine
Created May 31, 2012 00:42
Show Gist options
  • Select an option

  • Save mostlyfine/2839901 to your computer and use it in GitHub Desktop.

Select an option

Save mostlyfine/2839901 to your computer and use it in GitHub Desktop.
Google's Favicon Serviceでリンクにfaviconを表示させる
$("a[href^='http']").each(function() {
$(this).css({
background: "url(<a href="http://www.google.com/s2/u/0/favicons?domain=" target="_blank" rel="noreferrer" style="cursor:help;display:inline !important;">http://www.google.com/s2/u/0/favicons?domain=</a>" + 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