diff --git a/frontend/index.html b/frontend/index.html index 6e9d1a2..57d2ad9 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -13,6 +13,7 @@

+
@@ -54,9 +55,17 @@ } Array.from(document.querySelectorAll(".phrases")).forEach(element => { - titleChanger(element); + titleChanger(element); }) + + document.addEventListener('DOMContentLoaded', function() { + Array.from(document.querySelectorAll('input')).forEach(element => { + console.log(element) + element.focus(); + }) + }); + document.addEventListener('DOMContentLoaded', function() { const marqueeElement = document.body; let xPosition = 0;