jquery - scrolling down box with most recent feeds -


i've taken @ these 3 websites:

www.foursquare.com www.untappd.com www.getglue.com

as can see main page has scrolling down recent activity box. how create this?

is jquery or what?

its done javascript, can use jquery make easier on yourself. heres quick example

http://jsfiddle.net/tpmqj/

$(function(){     setinterval(function(){                   $("#wrapper").prepend($("<li>a new item</li>").hide().fadein());     }, 4000);  }); 

you use timeout, or interval, coupled ajax request, polls database , returns new results etc. basic concept appending new items dom tree.


Comments

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -