Custom tab icon
CompletedI'd like to add to change the icon (favicon) that shows on the tab of web browsers.
It is currently a folder for all sites by default but it would be nice to use a company logo to help differentiate between sites when multiple tabs are open.
-
Its sort of possible in Javascript.. Doesn't seem to work in Internet Explorer or Safari though. You might want to experiment.
(function() { var link = document.createElement('link'); link.type = 'image/x-icon'; link.rel = 'shortcut icon'; link.href = 'http://www.siteicontouse.com/favicon.ico'; document.getElementsByTagName('head')[0].appendChild(link); }());
Please sign in to leave a comment.
Comments
3 comments