1(function() {
2 var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
3 link.type = 'image/x-icon';
4 link.rel = 'shortcut icon';
5 link.href = 'http://www.stackoverflow.com/favicon.ico';
6 document.getElementsByTagName('head')[0].appendChild(link);
7})();