Posts about Jquery

ThinAir: Create DOM Elements Without Sweating

Announcing yet another tiny javascript library: ThinAir.ThinAir is a DSL for creating DOM elements on-the-fly. Example, if you want to create a text input:var elm = thinair.input({type: 'text',... more
Posted by Toby on Jul 30, 09
About programming, javascript and jquery

Radio Buttons Simplified

Working with radio buttons in javascript has always been a pain, even with the help of jQuery. For example, if you have something like:<label>Yes: </label><input type="radio"... more
Posted by Toby on Jul 19, 09
About programming, javascript, jquery and radiobutton

ColorCode Lineup - A Color-Code Scheme Editor

For my work I had the need to dynamically color code many objects, and I have to make sure that all the colors used are both distinguishable and the text inside them legible. So, I whipped up a... more
Posted by Toby on Jul 11, 09
About programming, javascript, jquery, tools and colorcoding

jQuery Style BDD

I have been warming up to the jQuery style of using method chaining. Then I thought: why are most unit test frameworks class based? There's no reason why we can't do it in the jQuery... more
Posted by Toby on Feb 19, 09
About programming, javascript, jquery and bdd
8 comments

Play Date with jQuery

I had a new toy project and started out with my trusty sidekick: prototype.js but a bit of the way in i decide to try my hand at jQuery instead, since I've already read a lot about jQuery and really... more
Posted by Toby on Aug 31, 08
About programming, javascript, prototype and jquery