Hello,
I'm a beginner to JavaScript. While browsing many websites, there is often dynamic explanation shown beside a link. How can I make it ? Is there any simple example which I can reference ?
Printable View
Hello,
I'm a beginner to JavaScript. While browsing many websites, there is often dynamic explanation shown beside a link. How can I make it ? Is there any simple example which I can reference ?
do you mean tooltips?
or a better example can be found hereHTML Code:<html>
<body>
<a href="" title="link to nowhere">link</a>
</body>
</html>