20 lines
324 B
HTML
20 lines
324 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="example.css">
|
|
</head>
|
|
|
|
<body>
|
|
A click shows both <code>event.target</code> and <code>this</code> to compare:
|
|
|
|
<form id="form">FORM
|
|
<div>DIV
|
|
<p>P</p>
|
|
</div>
|
|
</form>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|