Branding PeopleTools 8.54+ - FavIcon for Classic

Custom JavaScript Object:


Note: I am just referencing the delivered favicon that currently is located on the web server directory.
<PIA_HOME>/webserv/<DOMAIN>/applications/peoplesoft/PORTAL.war/<site_name>


Javascript for reference:

// create div for favIcon
var favIcon = document.createElement("LINK");

// set attributes and innerHTML
favIcon.setAttribute("rel","shortcut icon");
favIcon.setAttribute("href","http://pi012.hcm92.com:8000/ps/favicon.ico");

// insert favIcon div in the head element
document.getElementsByTagName('head')[0].appendChild(favIcon);

Inject Javascript in Classic using Branding System Options:


Results:


1 comment: