Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
githubAmanKumar authored Mar 7, 2024
1 parent 91f6e18 commit 5e614ad
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions 08_events/two.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Async</title>
<link rel="shortcut icon" href="#" type="image/x-icon">
</head>
<body>
<h1>Chai aur code</h1>
<button id="stop">Stop</button>
</body>
<script>
const sayAman = function () {
console.log("Aman");
};
const changeText = function () {
document.querySelector('h1').innerHTML = "best js series"
console.log("im done");
}


const changeMe = setTimeout(changeText,2000);

document.querySelector('#stop').addEventListener("click",function () {
clearTimeout(changeMe);
console.log("Stopped");
})
</script>
</html>

0 comments on commit 5e614ad

Please sign in to comment.