-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheventhandler.html
More file actions
33 lines (21 loc) · 774 Bytes
/
eventhandler.html
File metadata and controls
33 lines (21 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Event Handler</title>
</head>
<body onload="loadpagemessage();" onunload="unloadpagemessage();" onscroll="scrollmessage();">
<script src="js_files/eventhandler.js"></script>
<form>
<input type="button" value="Button" onclick="alert('You clicked the button.')">
<input type="button" value="Get SQRT" onclick="sqrt()">
<hr>
This is my <a href="https://ferzendervarli.com" onmousemove="alert('This is correct website.')" target="_blank">website</a>.
<hr>
This is not my <a href="#" onmousemove="alert('This is wrong website.')" target="_blank">website</a>.
<hr>
This is my <a href="https://ferzendervarli.com">website</a>.
<hr>
</form>
</body>
</html>