Hi. I want to make a tooltip using javascript. Anyone knows how to make it? If yes then post your replies. Thank you in advance.
You only need to add a "title" attribute on your <a> HTML element. Fill that attribute with your desired text. Also you can use the overlib library to get cool efects .
Example: <html> <head /> <body> <a href="http://www.google.com" title="Link to Google">Google</a> </body> </html> Code (markup): Place your mouse over the link and after two seconds you'll see the tooltip appearing .