I am making a HTML page that is unpublished . One of the things I wanted to do was add a favicon to appear next to the title. I\'m using google chrome and I noticed that oth
This trick works: add this script in header or masterPage for Example
var link = document.createElement('link'); link.type = 'image/x-icon'; link.rel = 'shortcut icon'; link.href = '/favicon.png';
and will be cached. It's not optimal, but it works.