1 line
188 B
JavaScript
1 line
188 B
JavaScript
document.getElementById("path").addEventListener("keydown", function(e) { if (e.code === "Enter") { e.preventDefault(); window.location.href = window.location.origin + e.target.value } })
|