| Automatically add page to Favorites |
|
<script LANGUAGE="JavaScript"> <!-- Begin if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
var url="Your URL";
document.write('<A HREF="javascript:window.ext');
// End -->
|
| Display Dialog Box (warn users) |
| <script language=javascript>
function warnUsers(newLocation) { </script> <A href=javascript:warnUsers("URL")>Click Here</A>
|
| Drop-down Menu |
| Version 1: <SCRIPT LANGUAGE="JavaScript"> <!-- function openDir (form) { if (form.directory.selectedIndex == 0) parent.window.location.href="URL" if (form.directory.selectedIndex == 1) parent.window.location.href="URL" } // end of script --> </SCRIPT> </HEAD> <BODY>
<FORM NAME="myform">
Version 2: |
| onMouseOver Status Text |
| <A HREF="URL" onMouseOver="window.status='your status text';return true">
|
| Scrolling Status Text |
| <SCRIPT LANGUAGE="JavaScript"> <!-- Beginning of JavaScript Applet -------------------
/* Copyright (C)1996 Web Integration Systems, Inc. DBA Websys, Inc.
This applet can be re-used or modified, if credit is given in
We will not be held responsible for any unwanted effects due to the PUT YOUR TEXT BETWEEN THE QUOTES IN THE FIRST TWO var LINES */
function scrollit_r2l(seed)
var m1 = "text";
var msg=m1+m2;
if (seed > 100) { </SCRIPT> </HEAD> <BODY onLoad="timerONE=window.setTimeout('scrollit_r2l(100)',500);">
|