I’m getting lazy about updating the vault with new tutorials. I really need to find more of an automated way to do this; but it’s a bit difficult when they’re posted across multiple sites. Anyhow, here’s what I’ve been up to for the last few weeks.
More…
I’ve been working on a nifty little project for the last few days. To be brief, it’s a jQuery plugin that allows for infinite scrolling. You’ve probably seem similar examples around the web from time to time. But if not, the plugin will either scan an images directory or query a database (depending on which you choose). If you’re pulling in five-hundred rows from a database, it doesn’t make much sense at all to select EVERY row. Instead, we generally use pagination to query only a handful at a time. Instead of clicking on a link to trigger the next page (or set of items), this plugin will automatically display the next set of items when the user scrolls down the page.
More…