Call many functions in BODY How can we call 2 functions (javascript) in onload of body in aspx? The fun开发者_运维知识库ctions are independent
<body onload="function1(); function2();">
Did you try calling the functions one after the other like shown below?
<body onLoad="javascript: yourFunction(); yourOtherFunction();">...</body>
精彩评论