Slide DIV from left after load the website

i have no idea why am i answering this …. you should seriously , learn how to ask question in stackoverflow first.. looks like this is you first time..

but anyways….what you need is $.animate()

Perform a custom animation of a set of CSS properties.

$('#divID').animate({
     left: '0'
 }, 5000);

Leave a Comment