javascript - how to get clicked a href link on mouseover? -
how clicked href link on mouseover?
i want clicked link on mouseover
what have make link clicked on mouseover
this code:
<a href="www.example.com">link</a>
try :
<a onmouseover="this.click();" href="...">link</a>
Comments
Post a Comment