Contact: aviboots(AT)netvision.net.il
42,115 questions
54,815 answers
573 users
<!DOCTYPE html> <html> <head> <script type="text/javascript"> function test() { alert('ok'); } window.onload = test; </script> </head> <body> </body> </html>
<!DOCTYPE html> <html> <head> <script type="text/javascript"> function test() { alert('ok'); } </script> </head> <body onload="test();"> </body> </html>