Di chuyển chuột đi vào tôi => Tôi ẩn


Code <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(function(){
$("#d1").mouseenter(function(){
$(this).hide(1000);
});
});
</script>
<style>
#d1{
width:50%;
height:50px;
text-align:center;
background:green;
color:white;
cursor:pointer;
}
</style>
</head>
<body>
<div id="d1">Di chuyển chuột đi vào tôi => Tôi ẩn</div>
</body>
</html>