775 snippets from 1603 members, and growing!
|
login
|
join
about
bytebin
members
tags
snippets
join
Snippets
Submit a Snippet
Search Snippets
New Snippets
Top Snippets
Top Tags
PHP
(138)
JavaScript
(125)
Java
(66)
VBSCRIPT
(58)
String
(44)
CSS
(31)
CSharp
(28)
File
(28)
HTML
(27)
mysql
(25)
C
(24)
VB.NET
(24)
python
(24)
CPlusPlus
(23)
groovy
(23)
New Snippets
Shell keepalive t...
Clean PHP Templat...
PHP/MySQL impleme...
Analyte - Easy to...
Easy SQLite inter...
Very lightweight ...
AutoComplete plug...
AutoComplete plug...
Connection Java -...
View PostgreSql
Venture Capital Jobs
New Members
KennethCC
me
jamesmcm
Can
Kelmi
ysg
dannymo2
chorny
wallie
Hackdemian
Top Members
dannyboy
sundaramkumar
mattrmiller
Pio
i_kenneth
ASmith
ctiggerf
sehrgut
bertheymans
SCoon
Home
/
Snippets
/
page onload function register
/
Comments
page onload function register
Snippet Menu
Revisions
Comments
Related Snippets
Add to Favorites
Email Snippet
Download Snippet
Print Snippet
Blog Snippet
snippet
|
revisions
|
comments
|
related
|
Add to Favorites
|
email
download
|
print
|
blog it
New Comment
Better Choice
Thu. Oct. 5th, 2006 6:06 AM
Thomas
A better choice would be to set the load events using the "addEventListener()" or "attachEvent()" methods of the "window" object. Their sole purpose is to allow you to add multiple event handlers.
Reply
more simple
Thu. Aug. 10th, 2006 7:34 AM
fabioso
function bodyOnLoad() {
test1();
test2();
}
function test1(){
....
}
function test2(){
....
}
content
Reply
New Comment
function bodyOnLoad() {
test1();
test2();
}
function test1(){
....
}
function test2(){
....
}
content