Animate a <div> with jQuery -


i looking option move <div> on page when page loaded. <div> contains chat window.

the box must fall down bottom of page , land on footer. how can achieved?

check out .animate() function, can used smoothly move div's , other elements on page: animate.

additionally, div can added @ page load such:

$(document).ready(function() {     $('body').append('<div id="chatwindow">hello world!</div>'); }); 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -