-
Jan '113
Django+Json Tutorial
We’ve been doing a lot with JSON recently so we decided to put together this video tutorial about serving and consuming JSON. This tutorial goes over how to JSON encode Django models, and how to read the JSON with jQuery to populate a webpage. Enjoy!
Read more » -
Nov '1029
jQuery Flipbook
Flipbook is a jQuery plugin for displaying image sequences.
A friend of mine asked me to write something to display an animated image sequence without being flash or a movie because it needed to work on the iPhone. Gif was also out because it was too low resolution for what he wanted.
I’ve been wanting to write a jQuery plugin for this for a while, because I hate that gif doesn’t have a full alpha channel, so I jumped at the opportunity. I decided to make it more versatile then just what he needed because I already have uses for it :)
You can see it in action on this demo page.
Read more » -
Oct '1018
InScopeApps jQuery RSS Feed
We’ve made a gist of our jQuery RSS feed plugin, feel free to use it!
Read more » -
Oct '1018
InScopeApps jQuery Twitter
We’ve made a gist of our jQuery twitter plugin, feel free to use it!
Read more » -
Oct '1018
InScopeApps jQuery Accordion
We’ve made a gist of our jQuery accordion plugin, feel free to use it!
Read more » -
Oct '106
JavaScript: getElementsByClassName
There are many scripts out there for this but many of them use a regular expression with \b. The problem with this is \b matches more then white space, like ‘-’. So if you want to find all elements with the class ‘expando’ elements with ‘expando-button’ will be returned. This function fixes this problem.
Read more »