The spbodyonload tag has no wiki summary.
1
vote
0answers
174 views
_spBodyOnLoadFunctionNames.push Not working in firefox
I tried this in firefox i dont know why its not working but it working in other browsers
function loadmonth() {
alert('called');
}
_spBodyOnLoadFunctionNames.push("loadmonth");
1
vote
2answers
705 views
refresh DataViewWebPart in _spBodyOnLoadFunctionNames with javascript
is there a way that is not too complicated too refresh just a dataview web part on a sharepoint site when loading the page in _spBodyOnLoadFunctionNames.push using javascript?
What I've done is ...
2
votes
1answer
572 views
XsltListViewWebPart remembering state in cookie not working properly
I have a XsltListViewWebpart that shows a tree structure with nodes. I made a jquery script that sets a cookie which persists the state of the nodes (expanded/collapsed) between postbacks.
I added ...
8
votes
6answers
3k views
Risk of conflict between jQuery document ready and _spBodyOnLoadFunctionNames?
I recently read in the jQuery documentation that:
The .ready() method is generally incompatible with the body
onload attribute. If load must be used, either do not use .ready()
or use jQuery's ...