Title is descriptive, what is wrong with this code and why?
<script type="text/javascript">
$(document).ready(function() {
$('#slideleft').mouseenter(function() {
var $lefty = $(this).next();
$lefty.animate({
left: "-2000px"
}, 500 );
});
});
</script>
HTML
<div id="slideleft" class="slide">
<div class="inner">Animate this element's left style property</div>
</div>