Rob Cook
03/08/2020, 7:09 AM/**
*@NApiVersion 2.x
*@NScriptType ClientScript
*/
define([], function() {
// Create new link Element
var link = document.createElement('link');
// set the attributes for link element
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'styles.css';
// Get HTML head element to append and link element to it
document.getElementsByTagName('HEAD')[0].appendChild(link);
});
battk
03/09/2020, 1:42 AMbattk
03/09/2020, 1:43 AMbattk
03/09/2020, 1:44 AM