Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Retrieving mouse coordinates

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hi.

I have a function:

function Menu(mlayer) {
if (navigator.appName == "Netscape") {
document.layers['total'].document.layers[mlayer].visibility = "visible";
} else {
document.all[mlayer].style.visibility="visible";
}
}

which makes a certain layer visible, right? but I also want to move the layer to where the mouse is... any ideas?


Thanks!
-NeXius
 
C'mon guys I really need this script...

Or is it even possible?

Thanks,
-NeXius
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top