Mega Code Archive

 
Categories / JavaScript DHTML / HTML
 

On mouse over action for anchor link

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