-
how to combine "two onLoad events"
I have to run following two online events:
<body onLoad="window.defaultStatus='bla bla'">
<body onLoad="stopHot()">
How do I do this?
Do you think the following code will work?
<body onLoad="window.defaultStatus='bla bla'; stopHot()">
Any suggestion will be appreciated. Thanks!
-
-
Yes your solution will work. Simply separate each function with a semicolon as you've donw above.
-
-
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks