x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h1>JavaScript removeEventListener()</h1>
6
<button onclick="removeHandler()">Remove</button>
7
<p id="demo"></p>
8
9
<script>
10
    document.addEventListener("mousemove", myFunction);
11
12
    function myFunction() {
13
        document.getElementById("demo").innerHTML = Math.random();
14
    }
15
16
    function removeHandler() {
17
        document.removeEventListener("mousemove", myFunction);
18
    }
19
</script>
20
21
</body>
22
</html>