golding100
Technical User
To date I have had the luxury of designing for IE5 only (Intranet), now I have to do the Company website as well, can anyone give me some pointers on how to get the following code to work in Netscape as well as IE5 ? Is it possible to change the CSS class of a table cell as you can with IE5 or do I have to go about the whole thing differently, if so, how?
Code:
function msover() {
if (window.event.srcElement.className == "MM") {
window.event.srcElement.className = "MO";
}
}
function msoff() {
if (window.event.srcElement.className == "MO") {
window.event.srcElement.className = "MM";
}
}
document.onmouseover = msover;
document.onmouseout = msoff;
<HTML> etc etc...............
<TD WIDTH="73" HEIGHT="18" Class="MM" ALIGN="center">About Us</TD>