with this html code i am able to animate the #logo div...
make sure you are including the jquery code, and i think you also
need to specify the #logo div as position:relative or position:absolute before
jquery would be able to move the element.
hope this helps
Code:
<!DOCTYPE html>
<head>
<style type="text/css">
#logo {
position: relative;
}
</style>
</head>
<body>
<div id="logo">logo</div>
<script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script>
$(document).ready(function(){
$('#logo').animate({left:"+=500"},1000);
});
</script>
</body>
</html>
Bookmarks