summaryrefslogtreecommitdiff
path: root/test/js/event-onclick.html
blob: 678a3b493e590203e7085dfaae80d8eed8033103 (plain)
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
<html>
<head>
<title>alert onclick example</title>

<noscript><p>Javascript is disabled</p></noscript>
<script type="text/javascript">

function causealert()
{
var txt = document.getElementById("p1").textContent;
alert(txt);
}

</script>
</head>

<body>
<div style="border: 1px solid red">
<p id="p1">First line of paragraph.<br /></p>
</div><br />

<button id="button1" >add another textNode.</button>

<script>
var button = document.getElementById("button1");

button.onclick = causealert;
</script>

</body>
</html>