<html>
<head>
<title>Hell WOrld</title>
</head>
<body>
<form method = "get" action = "index.html">
<input type = "text" name = "username" />
<input type = "submit" value = "submit">
</form>
<script type = "text/javascript">
document.getElementByName("username").onsubmit = alert("Hello World");
</script>
</body>
</html>
In the code, when ever you click the submit button, it says hello world, but how come the event is not triggered?