Created
May 31, 2012 00:42
-
-
Save mostlyfine/2839901 to your computer and use it in GitHub Desktop.
Google's Favicon Serviceでリンクにfaviconを表示させる
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $("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