Is there a way that if someone enters a site, everything that he writes will be entered in an input automatically so he doesn't need to click on it?
If already searched in the Internet, but I found nothing.
Is there a way that if someone enters a site, everything that he writes will be entered in an input automatically so he doesn't need to click on it?
If already searched in the Internet, but I found nothing.
Well, here's the way I think:
document.querySelector('#your-input-id').focus();
Add focus to your input by below line.
document.getElementById('search').focus();
See Demo
document.getElementById('search').focus();
<input id="search">