Skip to content

Instantly share code, notes, and snippets.

@Shaxadhere
Created January 18, 2023 06:29
Show Gist options
  • Save Shaxadhere/72662c782a097fc97410f22e2639186e to your computer and use it in GitHub Desktop.
Save Shaxadhere/72662c782a097fc97410f22e2639186e to your computer and use it in GitHub Desktop.
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = msgRecivedIcon; //imported icon
document.getElementsByTagName('head')[0].appendChild(link);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment