Back to Scripts page
Click in the box below, select all and copy to grab the script
<HTML> <HEAD> <TITLE>My JavaScript page</TITLE> <SCRIPT LANGUAGE=JAVASCRIPT> <!-- Hide script from older browsers // This script copyright 1997, Tom Negrino and Dori Smith. // This script is from "JavaScript for the WWW, Visual QuickStart Guide, 2nd Ed." // For more information, see <http://www.chalcedony.com/javascript/>. // This script may be used and modified, but the copyright notice must remain intact. alert("Welcome to my JavaScript page!") // End hiding script from older browsers --> </SCRIPT> </HEAD> <BODY BGCOLOR=WHITE> <NOSCRIPT> <H2>This page requires JavaScript.</H2> </NOSCRIPT> </BODY> </HTML>