John Resig put together a nice usage of MozAfterPaint , the new Firefox event that will call back letting you know when a repaint operation has happened:
The event object contains two properties: .clientRects and .boundingClientRect , both of which refer to the result of the associated DOM methods.
In a nutshell, boundingClientRect gives you a single rectangle encompassing the entire area in which a paint operation could’ve taken place whereas clientRects gives you a number of rectangles, each encompassing an individual area that was drawn.
To test this I created a quick demo using CNN.com (only works in the latest Firefox nightlies ).
John creating a simple tracking script that uses the new event to show where you have been.
kourge reminded us of the related Flash event showRedrawRegions .
Robert O’Callahan mentioned a use for the event when he discussed SVG bling that made it into the first 3.1 beta .
David Hyatt put in a WebKit p...
Content suppressed by ://URLFAN, for full article visit source
More posts from feeds.feedburner.com

Ajaxian: UberHour YouTube GameFrom: feeds.feedburner.com
Post Date: 2008-06-06 03:21:17
Howard Rauscher created a fun YouTube API based application, UberHour .
It is an implementation of the drinking game power hour, where music videos change every minute for an hour.
Of course, we don’t condone drinking at work on Fridays ;)
...
more 
Tech Crunch: iCall Brings Seamless Free VoIP to iPhoneFrom: feeds.feedburner.com
Post Date: 2008-06-06 03:10:18
A company I’m calling iCraw just announced a VoIP system for the iPhone that allows you to hop onto a VoIP network mid-call whenever you hit an open hotspot. It also offers free calls to the U.S. and Canada. It should be available on the Apple iPhone App store next week. Since I really enjoy T-Mobile’s Hotspot@Home UMA offerings , this sounds like a great way to save some money and get even better call quality on a non-T-Mobile phone. Here’s the feature list:
* ...
more 
Emily Chang: TweetcubeFrom: feeds.feedburner.com
Post Date: 2008-06-06 03:08:05
Allows Twitterers to upload and share files on Twitter. Files are hosted on their servers and with just a couple of clicks you can post these to Twitter. URL: Tweetcube .
...
more 
Ajaxian: NitobiBug: Cross browser debuggingFrom: feeds.feedburner.com
Post Date: 2008-06-06 04:02:31
Nitobi has released a cross browser debugging script, NitobiBug :
It’s a browser-based JavaScript object logger and inspection tool - similar to Firebug. NitobiBug runs across different browsers (IE6+, Safari, Opera, Firefox) to provide a consistent and powerful tool for developing rich Ajax applications.
With it you can:
PLAIN TEXT
JAVASCRIPT:
// inspect an object
var myObject = { a: 234523 , something: ’...
more