|
CodeAve.com - JavaScript - Navigation | |||
|
|
|||
| Alert Links | ||||
|
|
||||
<html> <title>CodeAve.com(JavaScript: Alert Links)</title> <body bgcolor="#FFFFFF"> <script language="JavaScript"> <!-- // Function that is called by the onclick command within the anchor tag function LinkAlert () { //The alert windon and the text that will appear is quoted \n makes a new line alert ("You are about to leave this site\nand travel to Yahoo!"); } // --> </script> <a href="http://yahoo.com" onClick="LinkAlert()">Hyperlink within the same window</a> <br><br> <a target="_blank" href="http://yahoo.com" onClick="LinkAlert()">Hyperlink to new window</a> </body> </html>
|
||||
|
|
||||