Skip to content

Instantly share code, notes, and snippets.

@spemer
Last active January 3, 2018 14:26
Show Gist options
  • Save spemer/53dd56df57494a7dda5148b42345e53c to your computer and use it in GitHub Desktop.
Save spemer/53dd56df57494a7dda5148b42345e53c to your computer and use it in GitHub Desktop.
function setFavicons(favImg){
let headTitle = document.querySelector('head');
let favIcons = [
{ rel: 'apple-touch-icon' },
{ rel: 'apple-touch-startup-image' },
{ rel: 'shortcut icon' }
]
favIcons.forEach(function(favIcon){
let setFavicon = document.createElement('link');
setFavicon.setAttribute('rel', favIcon.rel);
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