To attach hover event to a html element, hover()
method can be used. This event fires when user mouse over on the element.
<script>
$("#pHover").hover(function () { $(this).hide(500); });
</script>
In the above code when user mouse over element having id as “pHover” element, it will hide and the hiding activity will take 500 milliseconds, we will learn about .hide() method in following posts.
Views: 5044 | Post Order: 72