views:

277

answers:

2

I like the 'Recent Activity' effect on http://foursquare.com/. The top activity pushing all beneath. Is there a JQuery plugin or widget I can readily use which does the same?

(I am a lazy developer so please no 'you can develop this yourself' responses)

A: 

jQuery Spy is what you're looking for.

mattbasta
A: 

That can be achieved using the default jQuery slide() function, what happens is that the new item on the list comes with a slide (show) and the last one with a slide (hide) in it.

Info on the function: http://docs.jquery.com/UI/Effects/Slide

F.Aquino