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
Reference:
http://www.sharepointdiary.com/2010/01/want-to-trigger-javascript-function-on.html
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
Reference:
http://www.sharepointdiary.com/2010/01/want-to-trigger-javascript-function-on.html
No comments:
Post a Comment