prevent tab as well

This commit is contained in:
Azizul Karim 2025-01-31 21:11:45 +06:00
parent 362782d368
commit 138d3cef95
No known key found for this signature in database
GPG key ID: EC7B9BE87276BA4B

View file

@ -29,6 +29,10 @@
) {
event.preventDefault();
}
if (event.key === "Tab") {
event.preventDefault();
}
});
</script>
</body>