Skip to content

Instantly share code, notes, and snippets.

@spemer
Last active January 2, 2018 18:05
Show Gist options
  • Save spemer/c2ebe032a4133f452405a04f15d96c4d to your computer and use it in GitHub Desktop.
Save spemer/c2ebe032a4133f452405a04f15d96c4d to your computer and use it in GitHub Desktop.
function setFavicons(favImg){
let headTitle = document.querySelector('head');
let setFavicon = document.createElement('link');
setFavicon.setAttribute('rel','shortcut icon');
setFavicon.setAttribute('href',favImg);
headTitle.appendChild(setFavicon);
}
setFavicons('https://spemer.com/img/favicon/favicon.png');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment