Jquery Mouse Enter Function
by fido3993
HTML
<p id="hello">
If you click me, I will disappear
</p>
JavaScript
$(document).ready(function(){
$("#hello").mouseenter(function(){
alert("You enter p tag!");
})
});
by fido3993
<p id="hello">
If you click me, I will disappear
</p>
$(document).ready(function(){
$("#hello").mouseenter(function(){
alert("You enter p tag!");
})
});