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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

mouseover window - location error

Status
Not open for further replies.

dlkraft

Programmer
Dec 5, 2000
47
US
I can use javascript functions to open and close text windows.

My problem is one of location. When the user mouses over the text, the window opens directly over the link.

How can I specify where the window will open to avoid this?

All of my users are on an intranet running IE5 and IE6.

I am including a function call and a function that I use.

Thanks

<TABLE BORDER=&quot;2&quot; CELLPADING=&quot;2&quot; CELLSPACING=&quot;2&quot;>
<TR><TD BGCOLOR=&quot;white&quot;>
<FONT SIZE=&quot;3&quot; COLOR=&quot;black&quot; STYLE=&quot;cursor:hand&quot; ONMOUSEOUT=&quot;dis()&quot; ONMOUSEOVER=&quot;general()&quot;>
<B>General User</A><BR></FONT>
</TD></TR>
</table>

<SCRIPT LANGUAGE=&quot;JavaScript&quot;>
function general()
{
add.value=&quot;Internet\nE-Mail \nMicrosoft Office with Word, Excel etc.&quot;
add.style.height=135
add.style.width=300
}
</script>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top