Trigger Javascript Function on SharePoint Page Load

Want to trigger a Javascript function on SharePoint page load? All you have to do is push your function’s name to this array and it will trigger in the OnLoad event of the window.

Example: Place this code in CEWP:

 _spBodyOnLoadFunctionNames.push("MyFunction");
 function MyFunction() {
     alert('it works');
 }

In custom SharePoint pages, this chunk needs to be added just below: PlaceHolderMain or PlaceHolderAdditionalPageHead

Salaudeen Rajack

Salaudeen Rajack - SharePoint Expert with Two decades of SharePoint Experience. Love to Share my knowledge and experience with the SharePoint community, through real-time articles!

Leave a Reply

Your email address will not be published. Required fields are marked *