ऑनमाउसओवर जब आप अपने माउस को किसी भी तत्व पर लाते हैं तो ईवेंट ट्रिगर हो जाता है।
उदाहरण
ऑनमाउसओवर ईवेंट से JavaScript फ़ंक्शन को कॉल करने का तरीका जानने के लिए आप निम्न उदाहरण चलाने का प्रयास कर सकते हैं
लाइव डेमो
<html> <head> <script> <!-- function over() { document.write ("Mouse Over"); } function out() { document.write ("Mouse Out"); } //--> </script> </head> <body> <p>Bring your mouse inside the division to see the result:</p> <div onmouseover="over()" onmouseout="out()"> <h2> This is inside the division </h2> </div> </body> </html>