Hello everyone, firstly let me say that I write here because I couldn’t find a GitHub repo related to it. So, excuse my lack of experience for it.
I use Edge browser, and it really likes saving my search keywords all around the web. On Trakt.tv website’s search bar the dropdown of Edge’s saved info box overlaps with Trakt’s own search dropdown blocks. I found that Edge’s own suggestions can be disabled by simply turning off autocompletion on HTML of input element. Since Trakt already has its own autocompletion, I think it may also be better to make it default.
Below is the change I made in the HTML to make it clearer.
before
<input id="header-search-query" name="query" placeholder="Is it me you're looking for?" type="search" value="">
after
<input id="header-search-query" name="query" placeholder="Is it me you're looking for?" autocomplete="off" type="search" value="">
Thank you and happy new year all.