x
1
2
<html>
3
<head>
4
<title>removeEventListener JavaScript</title>
5
</head>
6
<body>
7
<h1 id="apple" class="memory">Welcome To CloseTag.com</h1>
8
<ol id="students"><li>Ahmed</li><li>Mohamed</li><li>Mazen</li></ol>
9
<button type="button" id="button">Remove</button>
10
<script>
11
let students = document.getElementById('students');
12
let button = document.getElementById('button');
13
14
button.addEventListener("click",removeHandler);
15
16
17
function removeHandler(){
18
students.removeChild(students.childNodes[0]);
19
button.removeEventListener("click",removeHandler);
20
}
21
</script>
22
</body>
23
</html>