Re: please critique

by "Jim Heaton" <Jim(at)Heaton.net>

 Date:  Mon, 7 Jun 1999 13:13:00 -0400
 To:  "John Moore" <jmoore30(at)bellsouth.net>,
"Critique List" <hwg-critique(at)hwg.org>
 References:  hwg
  todo: View Thread, Original
John,

Here's a java script that avoids the links on your start page. Down side is
that the browser's back button won't work unless it's double clicked real
fast.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML>
<HEAD>
<TITLE>XXX</TITLE>
<META name="description" content="">
<META name="keywords" content="">
</HEAD>
<BODY BGCOLOR="FFFFFF" TEXT="000000" LINK="0000FF" VLINK="800080">

<!--   DESCRIPTION:  Recognizes what browser you are using
and jumps to that browser's correct page.

 INSTRUCTIONS:  This script is your opening webpage.  Then depending on
which version of Netscape or IE the visitor is using, the page will then
"jump" to it's respective page.
-->
------cut here-------

<SCRIPT LANGUAGE="JavaScript">

manu=navigator.appName;
vers=navigator.appVersion;
file://MSIE 4.0+ BROWSERS WILL JUMP TO THIS LINK
 if (manu.indexOf("Microsoft")>=0 && vers.indexOf("4")>=0)
  {location.href="ie4.html";}
file://MSIE 3.0 BROWSERS WILL JUMP TO THIS LINK
 else if (manu.indexOf("Microsoft")>=0 && vers.indexOf("3")>=0)
  {location.href="ie3.html";}
file://Netscape 4.0+ BROWSERS WILL JUMP TO THIS LINK
 else if (manu.indexOf("Netscape")>=0 && vers.indexOf("4")>=0)
  {location.href="netscape4.html";}
file://Netscape 3.0 BROWSERS WILL JUMP TO THIS LINK
 else if (manu.indexOf("Netscape")>=0 && vers.indexOf("3")>=0)
  {location.href="netscape3.html";}
file://ALL OTHER BROWSERS WILL JUMP TO THIS LINK
 else
  {location.href="others.html";}
file://-->
</SCRIPT>


--------cut here-------





----- Original Message -----
From: John Moore <jmoore30(at)bellsouth.net>
To: Critique List <hwg-critique(at)hwg.org>
Sent: Saturday, June 05, 1999 4:14 PM
Subject: please critique


Ok, I haven't done a lot of HTML before, but I wanted you all to take a =
look at my home page and tell me what you think.  The 3.0 option was =
created as the very first thing that I've done.  Then I added the 4.0 =
version.  Some of the links are still semi-dead.

Anyway, please give me pointers or congrats. as you feel necesary.  =
Thank You
oh yeay, the url...
http://mypage.goplay.com/belibutn

Thank you again,=20
belibutn
John Moore
jmoore30(at)bellsouth.net

HTML: hwg-critique mailing list archives, maintained by Webmaster @ IWA