pages/site/script.js
2024-09-23 12:44:46 +02:00

9 lines
199 B
JavaScript

document
.getElementById("path")
.addEventListener("keydown", function(event) {
if (event.code === "Enter") {
window.location.href =
window.location.origin + event.target.value;
}
});