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