Javascript not working in Netscape 7.1

N

Norman Swartz

OS system is Windows XP Pro SP2.

The following works perfectly in IE but not at all in Netscape:

<tr>
<td valign="middle" background="dull.gif"
onMouseOver="this.background='bright.gif';"
onMouseOut="this.background='dull.gif';"
bgcolor="#FFFFFF">
<img src="vspacer.gif" height="46" width="20" align="left">
<span style = "font-size : 6pt">&nbsp;<br></span>
<span style="color : 000000; font-size : 9 pt;
font-family : arial, sanserif">
<a href="./notices/board.htm"><b>Notice Board</b></a></span></td>
</tr>

It's as if Javascript is turned off in Netscape. Is that an effect of
installing XP SP2? How do I get Javascript to work in Netscape?
 
M

Michael Winter

OS system is Windows XP Pro SP2.

The following works perfectly in IE but not at all in Netscape:

<tr>
<td valign="middle" background="dull.gif"
onMouseOver="this.background='bright.gif';"
onMouseOut="this.background='dull.gif';"

You should probably be using the style object.
bgcolor="#FFFFFF">
<img src="vspacer.gif" height="46" width="20" align="left">

A spacer GIF? See below.
<span style = "font-size : 6pt">&nbsp;<br></span>

If you need some spacing, place a top margin on the link, or a bottom
margin on the image. Don't hack with non-breaking spaces and font sizes.
The Web should be moving past that rubbish now.
<span style="color : 000000; font-size : 9 pt;

A hash (#) is required to prefix three- or six digit hexadecimal colour
codes.

Don't use pt, px, or any other fixed measurement for font sizes. It makes
text affected by them impossible to resize in some browsers. Use ems or
percentages instead.
font-family : arial, sanserif">

That should be:

font-family: Arial, sans-serif;
<a href="./notices/board.htm"><b>Notice Board</b></a></span></td>
</tr>

As a general comment, why the piecemeal approach to CSS? Everything that
you seem to be attempting can be done with CSS[1] yet you've got some
presentational HTML, some CSS, and some HTML hacks that you'd only expect
from errant WYSIWYG programs like FrontPage.

Documents should now be written with Strict HTML and CSS, unless it's a
legacy page that would take too much effort to fix, or that needs to be
Transitional for some other reason. Be forward-looking, not stuck in the
past!
It's as if Javascript is turned off in Netscape. Is that an effect of
installing XP SP2?

It shouldn't be. Netscape's JavaScript implementation is completely
separate from Microsoft's. Any changes to one should have no effect on the
other. I have SP2 and Netscape executes scripts with no problem. I assume
you've checked for error messages?
How do I get Javascript to work in Netscape?

By selecting it in the options. :p

Seriously though, write a very small, simple test page. A lone alert will
do. If you get nothing, consider reinstalling Netscape.

Good luck,
Mike


[1] Yes that includes the mouse-over, but it won't be supported by IE so
we'll ignore that for the time being.
 
L

Lasse Reichstein Nielsen

Norman Swartz said:
OS system is Windows XP Pro SP2.

The following works perfectly in IE but not at all in Netscape:

Which Netscape?
I'll assume it's a verson 6 or later (preferably much later).
<tr>
<td valign="middle" background="dull.gif"

The "td" element doesn't have a "background" attribute in W3C HTML.
It might be a proprietary Microsoft extension.

<URL:http://www.w3.org/TR/html4/struct/tables.html#h-11.2.6>

Remember to validate your HTML before trying to fix Javascript
problems. Invalid HTML can cause otherwise good Javascript
to fail (although that is not the case here).
onMouseOver="this.background='bright.gif';"

The W3C HTML DOM doesn't have a "background" property for
HTMLInputElement's either.

<URL:http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-6043025>

That would explain why it doesn't work as you expect in Netscape. They
might honor the "background" HTML attribute in order to support bad
pages, but there is a limit to how far they'll go.
It's as if Javascript is turned off in Netscape.

Insert a few alerts, and it's clear that it isn't. The assignment of a
string to the property called "background" just doesn't do anything
except ... well, assign.
Is that an effect of installing XP SP2?

Almost certainly not. The Netscape browser is not affected by patches
to Microsoft software.
How do I get Javascript to work in Netscape?

Write standards compliant code instead of just writing for IE.
I suggest using CSS for styling and DOM-compliant Javascript:
---
<td style="vertical-align: middle; background: #fff url(dull.gif)"
onmouseover="this.style.backgroundImage='url(bright.gif)';"
onmouseout="this.style.backgroundImage='url(dull.gif)';">
...
</td>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,743
Messages
2,569,478
Members
44,898
Latest member
BlairH7607

Latest Threads

Top