দি অনমাউসওভার৷ ইভেন্ট ট্রিগার করে যখন আপনি আপনার মাউসকে কোনো উপাদানের উপর নিয়ে আসেন।
উদাহরণ
অনমাউসওভার ইভেন্ট থেকে কীভাবে জাভাস্ক্রিপ্ট ফাংশন কল করতে হয় তা শিখতে আপনি নিম্নলিখিত উদাহরণ চালানোর চেষ্টা করতে পারেন
লাইভ ডেমো
<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>