Link.onMouseOut : a link « HTML Tags « JavaScript Tutorial






The onMouseOut event handler handles the event when the mouse cursor is moved away from the link.

<html>
    <head>
    <title> Using the onMouseOut event handler of the Link object</title>
    </head>
    <body>
    <script language="JavaScript">
    <!--
    function showMsg(){
         alert("The Mouse cursor was removed from the link");
    }
    -->
    </script>
    Click the mouse button while the cursor is on the link.
    <form name="form1">
    <a href=http://www.java2s.com
    onMouseOut='showMsg()'>
    http://www.java2s.com</a>
    </form>
    </body>
    </html>








21.1.a link
21.1.1.Link
21.1.2.Link.handleEvent()
21.1.3.Link.hash
21.1.4.Link.host
21.1.5.Link.hostname
21.1.6.Link.href
21.1.7.Link.onClick
21.1.8.Link.onDblClick
21.1.9.Link.onKeyDown
21.1.10.Link.onKeyPress
21.1.11.Link.onKeyUp
21.1.12.Link.onMouseDown
21.1.13.Link.onMouseOut
21.1.14.Link.onMouseOver
21.1.15.Link.onMouseUp
21.1.16.Link.pathname
21.1.17.Link.port
21.1.18.Link.protocol
21.1.19.Link.search
21.1.20.Link.target
21.1.21.Link.text
21.1.22.Call a function in hyperlink
21.1.23.Change links
21.1.24.Hyper link onClick event
21.1.25.Change hyperlink target
21.1.26.Hyper link onmouseover evnet: change window.location
21.1.27.Call your function in hyper link onMouseover event
21.1.28.Update window status bar in mouse over event for a hyper link element tag(IE)
21.1.29.Create a link with value in form controls