HighDots Forums  

Help mouse over a link to change a diffrent cell's background in Netscape

Javascript JavaScript language (comp.lang.javascript)


Discuss Help mouse over a link to change a diffrent cell's background in Netscape in the Javascript forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Justin
 
Posts: n/a

Default Help mouse over a link to change a diffrent cell's background in Netscape - 09-27-2003 , 06:20 PM






Ok here is working code in IE,

<td ID="TD1" width="478" height="553"
background="images/GUYONDOC.JPG" valign="top">. . . </td>


<a href="texana.htm"
onmouseout="document.images['texana'].src='images/Dot1.bmp';
TD1.background='images/GUYONDOC.JPG';"
onmouseover="document.images['texana'].src='images/Dot2.bmp';
TD1.background='images/jw_cow.jpg';
test.background='images/jw_cow.jpg';">
<img border="0" src="images/Dot1.bmp" width="14" height="14"
NAME="texana">TEXANA WESTERN HISTORY</a>

The link image changes fine in both ie and netscape. But the
Background of TD1 only changes in IE. Please help get this working in
Netscape

Thank you

Reply With Quote
  #2  
Old   
Lasse Reichstein Nielsen
 
Posts: n/a

Default Re: Help mouse over a link to change a diffrent cell's background in Netscape - 09-27-2003 , 07:40 PM






jcwilson00 (AT) hotmail (DOT) com (Justin) writes:

Quote:
Ok here is working code in IE,
.... which really don't say very much about the correctness of the code
....

Quote:
td ID="TD1" width="478" height="553"
background="images/GUYONDOC.JPG" valign="top">. . . </td

TD1.background='images/GUYONDOC.JPG';"
Referring to a named element as a property of the global object only
"works" in IE.

Quote:
The link image changes fine in both ie and netscape. But the
Background of TD1 only changes in IE. Please help get this working
in Netscape
I assume you mean Netscape 6+ (i.e., a browser based on Mozilla),
since Netscape 4 can't access the td element at all.

Change the TD1.background... line to
---
document.getElementById("TD1").style.backgroundIma ge =
"url('images/GUYONDOC.JPG')";
---

/L
--
Lasse Reichstein Nielsen - lrn (AT) hotpop (DOT) com
Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit.html>
'Faith without judgement merely degrades the spirit divine.'


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.