I need to create a jquery script to slide a DIV from
<left: -200px>
to
<left: 0px>
after the page loads. I've tried the following, but it doesn't work:
$(window).load(function () {
$("divID").css("margin-left", -$(this).width()).animate({
marginLeft: 0
}, 1000);
});