x
1
2
<html>
3
<body>
4
5
<p>This document has an onmousemove event handler that displays a random number every time you move your mouse in this document.</p>
6
7
<p>Click the button to remove the event handler.</p>
8
9
<button onclick="removeHandler()">Try it</button>
10
11
<p><strong>Note:</strong> The addEventListener() and removeEventListener() methods are not supported in Internet Explorer 8 and earlier versions.</p>
12
13
<p id="demo"></p>
14
15
<script>
16
document.addEventListener("mousemove", myFunction);
17
18
function myFunction() {
19
document.getElementById("demo").innerHTML = Math.random();
20
}
21
22
function removeHandler() {
23
document.removeEventListener("mousemove", myFunction);
24
}
25
</script>
26
27
</body>
28
</html>