mirror of https://github.com/rscmbbng/Border-Check
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
623 B
20 lines
623 B
/*!
|
|
* Dynamically changing favicons with JavaScript
|
|
* Works in all A-grade browsers except Safari and Internet Explorer
|
|
* Demo: http://mathiasbynens.be/demo/dynamic-favicons
|
|
*/
|
|
|
|
// HTML5™, baby! http://mathiasbynens.be/notes/document-head
|
|
document.head = document.head || document.getElementsByTagName('head')[0];
|
|
|
|
function changeFavicon(src) {
|
|
var link = document.createElement('link'),
|
|
oldLink = document.getElementById('dynamic-favicon');
|
|
link.id = 'dynamic-favicon';
|
|
link.rel = 'shortcut icon';
|
|
link.href = src;
|
|
if (oldLink) {
|
|
document.head.removeChild(oldLink);
|
|
}
|
|
document.head.appendChild(link);
|
|
}
|