bluephoenix
02-03-2003, 07:00 AM
I'm stumped; it's late and I've been at this for hours trying everything I can think of. Here's what I've got. I have the following function call assigned in my html document:
onMouseOver="showPath(this); return true;)
the function resembles:
function showPath(mousedItem) {
var whereAmI = mousedItem.???
document.title = whereAmI;
}
I need to know what to use in place of the ??? to have the path of the item displayedin the titlebar. For example, the desired output would be similar to window.document.object.name
Thanks for the help. It seems simple, but I just can't figure it out.
onMouseOver="showPath(this); return true;)
the function resembles:
function showPath(mousedItem) {
var whereAmI = mousedItem.???
document.title = whereAmI;
}
I need to know what to use in place of the ??? to have the path of the item displayedin the titlebar. For example, the desired output would be similar to window.document.object.name
Thanks for the help. It seems simple, but I just can't figure it out.