If you have JavaScript enabled, you could run this in the console :
(function() {
var i=0;
var arrLink = [];
var found = 0;
arrLink = document.getElementsByTagName('link');
if (arrLink.length > 0) {
for (i=0; i < arrLink.length; i++) {
if (typeof arrLink[i].rel !== 'undefined' && arrLink[i].rel.indexOf('icon') > -1) {
found = 1;
window.open(arrLink[i].href);
}
}
if (found === 0) {
alert('favico Not Found');
}
} else {
alert('favico Not Found');
}
})();
Alternatively use the below code as a bookmark / paste in the URL :
javascript:(function(){var a=0,b=[],c=0,b=document.getElementsByTagName("link");if(0<b.length){for(a=0;a<b.length;a++)"undefined"!==typeof b[a].rel&&-1<b[a].rel.indexOf("icon")&&(c=1,window.open(b[a].href));0===c&&alert("favico Not Found")}else alert("favico Not Found")})();
The other answers are all awesome. I learned a lot, thank you. But, for my specific purposes, this is what I was looking for. Accepted. – Robert Cartaino – 2010-06-30T02:44:22.810
2Well, except for sites like Wikia. – Hello71 – 2010-07-04T22:14:07.137
Genius, really. I even could get a dead linked website's favicon from Internet Wayback Machine. See my example here https://web.archive.org/web/20190615152329/http://www.ubuntubuzz.com/favicon.ico, it is an orange box with white "ub!" text written. Thanks a lot!
– Ade Malsasa Akbar – 2020-02-21T07:13:34.58010So simple yet genius. – Raffi Khatchadourian – 2012-11-23T19:28:45.633