This commit is contained in:
2024-03-14 22:11:08 +01:00
commit 67bd4e2c28
7 changed files with 89 additions and 0 deletions

9
home.js Normal file
View File

@@ -0,0 +1,9 @@
function run()
{
document.getElementById("id_run").addEventListener("click", function(e){
console.log("triggered!!");
alert("judihudi");
e.preventDefault();
});
}
window.onload = run;