'onmouseover="this.click()" for Android
I am using this code:
<a href="http://www...." onmouseover="this.click()">Link</a>
I know that's not working with Android Browser.
Which (javascript) code works with Android Browser too?
Thanks for all helps.
Solution 1:[1]
I have used the codes
<span onmouseover = function x() onmouseout = function y()>'some text' </span>
to pop up a window showing info. from a glossary file relating to 'some text'. The functions are in a script file. This was written for PC/Laptop browsers but I find it works in Android browsers also provided pop ups are not disabled. Example: https://carnatic2000.tripod.com/JSA/intro4.htm In Laptop pop up comes on moving the mouse over the words in brown color and in Android on touching.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Jakub Kurdziel |