To attach mouse leave event to a element, mouseleave()
method can be used.
<div id="spanMouseDownUp"
style="background: green; color: White; padding: 10px;">
Try to bring your mouse
here
</div>
<script>
$("#spanMouseDownUp").mouseleave(function () {
$(this).html("Mouse left this area");
});
</script>
In the above code when user try to leave the mouse from the “spanMouseDownUp” element then “Mouse left this area” text is written inside it.
Views: 4728 | Post Order: 79