Use custom function as body onload event handler
|
|
<html> <head> <title>Onload Example</title> <script type="text/javascript"> function handleLoad() { alert(window.onload); } </script> <body onload="handleLoad()"> </body> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
|