As Martijn Pieters points out, there are so many ways that this is accomplished by various websites. Because of this, you might want to make use of a headless browser. Here is a link to a question where this is discussed:
Headless Browser for Python (Javascript support REQUIRED!)
In this question, Richard gives the following answer which you might find usefule:
I use webkit as a headless browser in Python via pyqt / pyside:
http://www.riverbankcomputing.co.uk/software/pyqt/download
http://developer.qt.nokia.com/wiki/Category:LanguageBindings::PySide::Downloads
I particularly like webkit because it is simple to setup. For Ubuntu you just use:
sudo apt- get install python-qt4
Here is an example script:
http://webscraping.com/blog/Scraping-JavaScript-webpages-with-webkit/
I hope this helps.
P.S.: For future questions, try not to be a bit more specific with your question, so you don't get down-voted by others.
Edit: 2013-04-13 19:00 CAT
After looking at your updated question, with the specific URL you are investigating, I opened it up in Chrome and inspected the Network requests with the Developer Tools, and I see that what happens when you reach the bottom of the page, it calls a URL with the following format:
http://www.kickstarter.com/projects/597507018/pebble-e-paper-watch-for-iphone-and-android/backers?cursor=675683697
You just need to use the previous HTML to determine the proper cursor value to use.