- Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathevent_handler_2.html
More file actions
Latest commit
21 lines (16 loc) · 525 Bytes
/
Copy pathevent_handler_2.html
File metadata and controls
21 lines (16 loc) · 525 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<htmllang="en">
<head>
<title>JavaScript Tutorial - Event Handlers 2</title>
<linkrel="stylesheet" href="css/foundation.min.css"></link>
</head>
<bodyonload="alert('I am loaded! Love Vodka!');">
<ahref="http://www.google.com" class="button" onmouseover="alert('Google It!');">Google It</a>
<br>
<ahref="http://www.bing.com" class="button" onmouseleave="alert('No Binging!');">No Bing!</a>
<!-- JAVASCRIPT -->
<scripttype="text/javascript">
</script>
<!-- END JAVASCRIPT -->
</body>
</html>