Friday, May 9th, 2008
The Dimensions plugin was originally started by Paul Bakaus. By popular demand my offset plugin was merged with the Dimensions plugin. From that point on I contributed several other methods to Dimensions and helped maintain the plugin with Paul. Dimensions became one of the most widely depended on plugins by developers and other plugins. It [...]
Thursday, May 8th, 2008
jQuery methods, in most cases, operate on zero or more matched elements. Getter type methods are an exception. The getter methods only return the results for the first matched element. This is overwhelmingly the typical use-case. However, sometimes you might want to get the results for all matched elements in the jQuery collection. Introducing jQuery.batch, [...]
Sunday, August 19th, 2007
Live Query, previously called Behavior, utilizes the power of jQuery selectors by binding events or firing callbacks for matched elements auto-magically, even after the page has been loaded and the DOM updated.
For example you could use the following code to bind a click event to all A tags, even any A tags you might add via [...]
Friday, August 17th, 2007
Release early, release often. In the 1.1.1 update there was a regression in Safari with calculating the window width and height. I also fixed a bug in getting the offset of table cells with borders in Mozilla. As usual, you can report bugs, request features and download Dimensions 1.1.2 from the Dimensions project page.
Friday, August 17th, 2007
I just released Dimensions 1.1.1 which fixes up an issue when trying to get the document width and height. Grab the zip from the Dimensions project page.
Sunday, August 12th, 2007
I just released Dimensions 1.1. It includes a new option to include margins for the outerWidth and outerHeight methods. I’ve also fixed the issues with Safari 3 and the offset method. This update does require jQuery 1.1.3 or greater. Feel free to grab the zip from the Dimensions project page. Oh and the docs have [...]
Wednesday, July 25th, 2007
I just released Dimensions 1.0.1. It fixes an issue with fixed position elements in Opera and makes it easier to run the test suite locally.
You can download the zip from the Dimensions project page.
Sunday, July 22nd, 2007
Dimensions 1.0 is final! This is a very big release for Dimensions and includes a lot of bug fixes, new features, an automated test suite and docs. Yup, even docs! So what new features have been added to Dimensions in 1.0?
Sunday, July 1st, 2007
Hot on the heels of the jQuery 1.1.3 release, here is Dimensions 1.0 release candidate 1! Dimensions 1.0rc1 includes several key new features.
A new method, called position, to get the positioned offset of an element
A new lite option to the offset method that runs much faster
The offset method now works on the body element
The scrollTop and scrollLeft methods are [...]
Tuesday, June 26th, 2007
I just added a new plugin called, gradient. It dynamically applies a configurable gradient to the background of an element. You create a gradient like this:
$('.gradient').gradient({ from: '003366', to: 'FFFFFF' });
Check out the visual test, read the docs and grab the code.