hello,
i'm new into javascript. I want to call a function with a mouseoverevent:
onMouseOver="javascript:SetExpl('Startpage, overview of the site')"
Here is the function:
<script language="JavaScript">
function SetExpl(theText)
{
document.write(theText);
} </script>
The problem: I' want to set the text after the mouseoverevent on the current page but when i do a mouseover, the text comes on a new pages.
Did somebody had the same problem?
i'm new into javascript. I want to call a function with a mouseoverevent:
onMouseOver="javascript:SetExpl('Startpage, overview of the site')"
Here is the function:
<script language="JavaScript">
function SetExpl(theText)
{
document.write(theText);
} </script>
The problem: I' want to set the text after the mouseoverevent on the current page but when i do a mouseover, the text comes on a new pages.
Did somebody had the same problem?