Consider:
<a href="#" onClick="myFunction22()"><img src="images/icon-exit.png" width="34" height="34" alt="Exit Fullscreen"></a>
I want a hover ALT tag for this Onclick link saying... "Exit Fullscreen"
Consider:
<a href="#" onClick="myFunction22()"><img src="images/icon-exit.png" width="34" height="34" alt="Exit Fullscreen"></a>
I want a hover ALT tag for this Onclick link saying... "Exit Fullscreen"
You can use the title attribute for this:
<a href="#" onClick="myFunction22()" title="Exit FullScreen"><img src="images/icon-exit.png" width="34" height="34" alt="Exit Fullscreen"></a>
You can use the title attribute of the a tag like this:
<a title="hello" href='/'>
Hello world
</a>
You could do this without involving a link
<img src="images/icon-exit.png" onclick="myFunction22()" width="34" height="34" title="Exit Fullscreen">
but in either case, just use title=