This commit is contained in:
Karan
2021-11-24 20:34:53 +05:30
parent 39f7de9b6a
commit 7bd1867b6a
22 changed files with 759 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<!doctype html>
<html>
<head>
<title>JS Tester</title>
</head>
<body>   
<script>       
document.addEventListener("DOMContentLoaded", (e) => {
message("Document ready", e);
});
window.onload = (e) => {
message("Window ready", e);
}
function message(val, event) {
console.log(event);
console.log(val);
}
</script>
</body>
</html>