Forum Discussion
- Steve JohnsonCopper Contributor
What about this in the Application.Customizer? Would this not load the script into the header?
export default class CustomJsApplicationCustomizer
extends BaseApplicationCustomizer<IJsApplicationCustomizerProperties> {
private _externalJsUrl: string = "https://<tenant>.sharepoint.com/sites/<site>/CDN/someJSfile.js";
@override
public onInit(): Promise<void> {
/* LOADING THE JS */
let scriptTag: HTMLScriptElement = document.createElement("script");
scriptTag.src=this._externalJsUrl;
scriptTag.type = "text/javascript";
document.getElementsByTagName("head")[0].appendChild(scriptTag);
console.log ("Loading some JS file");
return Promise.resolve();
}
}
- Mahendran DhandapaniCopper Contributor
On the documentation, it is mentioned that;
The logic for your Application Customizer is contained in the onInit method, which is called when the client-side extension is first activated on the page. This event occurs after this.context and this.properties are assigned. As with web parts, onInit()returns a promise that you can use to perform asynchronous operations.
Client-side extensions are activated when body tag renders. Correct me if I'm wrong. This is not we wanted.
On the classic SharePoint, if we install a custom script (ScriptLink with sequence order) then it loads as part of head tag. It does not get injected (or load) after the body tag renders.
Related Content
- Aug 23, 2024
- May 11, 2021
- Nov 13, 2024
- Jul 22, 2024
- Aug 05, 2024