Hey, I ran into a similar problem and I solved the problem by following these steps
- Vizio platform is trying to implement its own freeze, where ever it finds a tag
<a href>on a web page - The Vizio platform will implement the freezing of text fields and other types of input on a web page.
In fact, vizio defines an internal hover that works from top to bottom in for example, suppose that such code exists
<div>
<a href="t1.html">test1</a>
<a href="t2.html">test2</a>
<a href ="t3.html">test3</a>
</div>
In the above case, as soon as you press the navigation key on the remote guidance, you will get test1, and as soon as you press the right key, it will switch to test2 and so on, and vice versa will happen in the case of the left key
Note: the way to avoid this hover is to remove the href tags in the application, at least I did it in my application
source
share