Home Messages Index
[Date Prev][Date Next][Thread Prev][Thread Next]
Author IndexDate IndexThread Index

Re: Working in All Except Mozilla (Firefox)

  • Subject: Re: Working in All Except Mozilla (Firefox)
  • From: mscir <mscir@access4less.net>
  • Date: Fri, 03 Dec 2004 23:17:32 -0800
  • In-reply-to: <cormtb$14b7$1@godfrey.mcc.ac.uk>
  • Newsgroups: alt.html
  • Organization: Posted via Supernews, http://www.supernews.com
  • References: <cormtb$14b7$1@godfrey.mcc.ac.uk>
  • Reply-to: mscir@access4less.net
  • User-agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax)
  • Xref: news.mcc.ac.uk alt.html:272304
Roy Schestowitz wrote:

Here is a problem I have not managed to solve for months. I have some
JavaScript which works properly in all the browsers I have tried except
Mozilla, including Firefox 1.0.

In my menu that is located http://www.schestowitz.com/Frames/bar.htm I am
supposed to get text displayed when I hover over the images. In never comes
up though.

function display_title(num) {
if (!document.layers && !document.all && !document.getElementById) return;
var entry=new Array(13);
entry[0]="";
entry[1]="<FONT SIZE=4 COLOR=WHITE><B>H</B><FONT SIZE=2>ome";
entry[2]="<FONT SIZE=4 COLOR=WHITE><B>S</B><FONT SIZE=2>ite Map";
entry[3]="<FONT SIZE=4 COLOR=WHITE><B>M</B><FONT SIZE=2>ore...";
entry[4]="<FONT SIZE=4 COLOR=WHITE><B>W</B><FONT SIZE=2>eb Log";
disp = "<FONT SIZE=3 COLOR=WHITE>" + entry[num] + "</FONT>";
if (document.getElementById) {
document.getElementById('pendule').innerHTML = disp;
} else if (document.layers) {
document.layers.pendule.document.write(disp);
document.layers.pendule.document.close();
}
}


[Date Prev][Date Next][Thread Prev][Thread Next]
Author IndexDate IndexThread Index