Need to animate on page load
Need to animate on page load
Out of context: Reply #2
- Started
- Last post
- 4 Responses
- bigtrickIII0
so put all your animation code inside a wrapper like this:
$(document).ready(function() {
// code goes here
});and it will run when the dom is ready.