Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rrjanbiah/jquery-favicon
jQuery plugin for adding favicons next to the links
https://github.com/rrjanbiah/jquery-favicon
favicon jquery jquery-plugin
Last synced: 2 days ago
JSON representation
jQuery plugin for adding favicons next to the links
- Host: GitHub
- URL: https://github.com/rrjanbiah/jquery-favicon
- Owner: rrjanbiah
- Created: 2018-08-15T17:45:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-16T16:21:06.000Z (over 6 years ago)
- Last Synced: 2024-10-12T23:13:07.531Z (about 1 month ago)
- Topics: favicon, jquery, jquery-plugin
- Language: PHP
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jquery-favicon
jQuery plugin for adding favicons next to the links. That is, to automate:```
a[href ^="http://jquery.com"] {
background: url(http://jquery.com/favicon.ico) center right no-repeat;
padding-right: 16px;
}
```## Usage
* `$('a').favicon();` - all links
* `$('a[@href^="http"]').favicon();` - all external links
* `$('a').favicon({paddingRight: '32px'});` - all links with custom `paddingRight`