x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
</head>
6
<body>
7
8
<div onmouseover="mOver(this)" onmouseout="mOut(this)" style="background-color:#D94A38;width:120px;height:20px;padding:40px;">Mouse Over Me</div>
9
10
<script>
11
function mOver(obj) {
12
obj.innerHTML = "Thank You"
13
}
14
15
function mOut(obj) {
16
obj.innerHTML = "Mouse Over Me"
17
}
18
</script>
19
20
</body>
21
</html>