I'm using Adobe Dreamweaver CS6, and I am building a webpage, and I have this issue with jQuery that to took my time to figure it out, but still didn't. I am using Chrome BTW. Can you help me please?
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('div').mouseenter(function(){
$('div').fadeOut('fast',500);
});
});
</script>
</head>
<body>
<div style="width:300px; height:300px; background-color:#F00;"></div>
</body> `