Mega Code Archive

 
Categories / JavaScript Tutorial / HTML Tags
 

Call your function in hyper link onMouseover event

< html> <head> <title>A Simple Page</title> <script language="JavaScript"> <!-- function overMessage() {     alert("This is a great link - click on it!"); } //  --> </script> </head> <body> <a href="http://www.rntsoft.com" onMouseover="overMessage()">www.rntsoft.com</a> </body> </html>