[jQuery] [Plugin Release] Endless Scroll

2009-01-16 Thread Canglan

Hi guys,

Just thought I'd post this here in case anyone finds it useful. I have
released a plugin for endless scrolling.

If you don’t already know, endless scroll (or infinite scrolling) is a
popular technique among web 2.0 sites such as Google Reader and Live
Image Search, where instead of paging through items using the
traditional pagination technique, the page just keeps loading with new
items attached to the end.

For more information including features, usages and a demo, check out:

http://www.beyondcoding.com/2009/01/15/release-jquery-plugin-endless-scroll/

Hopefully you'll find it useful, and please feel free to provide
feedback. :)

Cheers,
Fred



[jQuery] Re: Google Reader style endless scroll library?

2009-01-14 Thread Canglan

In case anyone is looking for the same thing:

I have released a jQuery plugin:

http://www.beyondcoding.com/2009/01/15/release-jquery-plugin-endless-scroll/

Enjoy! :)

Cheers,
Fred

On Dec 21 2008, 8:47 am, Eeby  wrote:
> Hey y'all. I'd like to provide "endless scrolling" of search results
> in the manner of Google Reader. The thing where an AJAX call loads
> more results when you scroll to the bottom of the list of results. A
> Google search turned up a lot of articles on the theory of how to do
> it. I also searched the jQuery plugin repository. Is there a reliable
> library or jQuery plugin that provides this functionality? If not I'll
> roll my own. Just thought I'd check first.
>
> Thanks,
>
> Ethan


[jQuery] Re: jQuery 1.3rc2 Ready

2009-01-12 Thread Canglan

Nice! :)

Now I'm just waiting patiently for the updated Validation plugin. :)


[jQuery] Re: jQuery 1.3rc1 Ready

2009-01-11 Thread Canglan

Kudos!

John, the RC1's new selector is causing problems with some of my
existing code base, I've submitted a ticket:

http://dev.jquery.com/ticket/3826

Thanks!


[jQuery] Re: history/remote plugin, initialization callback doesn't work?

2007-05-03 Thread Canglan

Anyone got any ideas? :/



[jQuery] history/remote plugin, initialization callback doesn't work?

2007-05-03 Thread Canglan

Hi folks,

I'm trying to use history/remote plugin with jquery to build a web app
which supports history and bookmarking. However, the problem is, the
function callback in $.ajaxHistory.initialize() doesn't seem to
work...

Here's my code:

$(function() {
$("a.categories").remote('#threads', {hashPrefix: 'category'});

$.ajaxHistory.initialize(function() {
$("#threads").load(base_url + "home/categories/");
});
});

FYI I'm using clean URL, so the link *IS* correct. :)

Other ajax clicks are all working fine, but the initialization is not
working, it just doesn't do anything (blank page). Am I missing
something?

Also another question, if I manually enter the URL with a hash value,
then whatever ajax links I click on will NOT change the URL in the
browser's address bar. This is common among a number of similar
libraries including YUI Browser History Manager. Is there anyway to
overcome this?

Thanks!
Fred