JavaScript - How To execute script on document load
07.03.2010

 

Way1: append <body> with onLoad call: <body onLoad="my_funct()">


Way2: in js code use syntax:

window.onload=function(){

//execute my code here on document load
}

 

See details onlinetools.org

 

 
<< Start < Prev 1 2 3 4 5 6 7 8 9 10 Next > End >>

Page 7 of 12