I've been experimenting with getting a div to slide in on page load. The div has an id of "#crazyslide" and is positioned absolutely to the right at -800px in the CSS.
After trying out this code in the head:
<script type="text/javascript>
$(document).ready(function() {
$("#crazyslide").animate( { right: '0px' }, 2000 );
});
</script>
I'm not sure why it's not working. Any ideas?