Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript thread: ommouseOver


Message #1 by "Udhayakumar. U" <udhayakumar@i...> on Fri, 3 May 2002 12:18:55 +0530
var txt=""
I want to know how to Use onMouseOver in Netscape.

The code below works well in IE but not in Netscape.

I am calling this fution from one HTML file.But onMouseOver i want to change

the color of <td> tage.

Now i am trying to call one function uu.But it is not calling that function 
also


function jump0()
{


       txt ="<form name='fr'>" +

	    "<table border='1' width='780' height='12' bgcolor='#FF8F20' 
cellspacing='1'>" +

                 "<tr>" +

                      "<td onMouseOver='uu()'>Issue " +


                      " </td> "  +

		"</tr>" +

	    "</table>"	+

		"</form>"

	    document.m2.document.write(txt);
	    document.m2.document.close();
}

function uu()
{
alert("test")

}

Regards
Udhay 


  Return to Index