Wednesday, July 20th, 2005
Category: Showcase
Digg has an ajaxian new page that auto refreshes, and uses the Fade Anything Technique to show you which entries are new… although the fade is too bloody fast. It would better to show different backgrounds to tell what got loaded each time. It would also be nice to have a standard refresh timeout that Read the rest…
Category: Articles
MSDN has recurrected an old favourite, Faster DHTML in 12 Steps. The article talks about: Batch Your DHTML Changes Talk to Your innerText Use the DOM to Add Individual Elements Expand Your Options in a SELECT Element Use the DOM to Update Tables Write Once, Use Many Times Don’t Be Too Dynamic with Your Properties Read the rest…
Category: Editorial
David Flanagan has pointed us to the fact that WaSP has recently announced the launch of the DOM Scripting Task Force “to promote “unobtrusive” JavaScript programming using the W3C DOM”. Manifesto Definitions Unobtrusive JavaScript at work David also discusses JavaScript Closures and the scope chain…
Tuesday, July 19th, 2005
Category: Showcase
HoverSearch() offers a script which allows hover transparent divs that show up, and can access web services asynchronously via Ajax to show context information.
Category: Component
, LiveSearch
, Showcase
A new site, Ajaxed.com, gives you the ability to customize a Google Suggest-like ajaxian component for your use. It will be interesting to see their next components are.
Monday, July 18th, 2005
Category: Showcase
Jake Tracey pointed us to ServerSideWiki, which is Josh Goebel’s example of taking the client-side, wicked cool TiddlyWiki, and giving it a server-side component. He happens to use Rails.
Category: Editorial
Some of the concerns that you have when you build an Ajaxian application revolve around usability, and accessability. One item that I worry about is how crawlers like Google can keep up with the changes. Google is used to thinking that one URL == one page to index. These days that isn’t always the case. Read the rest…
Saturday, July 16th, 2005
Category: Chat
, Showcase
Wael Chatila has done the coolest Ajaxian Harry Potter application to date :) Wael implemented a magical diary, inspired by the magical diary in “Harry Potter and the Chamber of Secrets” using a chatbot, Ajax and some cool scripting :) How about that for an ode to the new book coming out this weekend? Type Read the rest…
4.4 rating from 126 votes
Friday, July 15th, 2005
Category: Examples
Eric Pascarello has written both a JSP and ASP backed version of a user session tracker using Ajax. His aim, is to enable users not to get timed out. His article goes through the Ajaxian code, and both server side pieces.
Category: .NET
, Component
Enrico Elizar Samuel has created an Ajaxian .NET DropDownList component. This custom DropdownList utilizes Ajax to populate its content and implements the Observer pattern to participate in dependent dropdownlist chains. This article discusses the usage, and development of this component. Download the demo project / source code
Thursday, July 14th, 2005
Category: Articles
Ben and I are strong believers that Flash is great for the Ajaxian toolbox. Christian Cantrell, and Mike Chambers, gave a presentation at FlashForward in New York City, discusing how to have Flash and JS work together. They talk about the Flash / JavaScript Integration Kit, and using it: Installation Calling an ActionScript function from Read the rest…
Category: Showcase
Nathan Yergler released wpLicense 0.5, which is a nice ajaxian application for selecting CC licenses. This release also adds a new configuration option: “Include license badge in default footerâ€?. If you use the default WordPress theme (or probably 90% of the other themes out there that call wpfooter(); ), checking this saves you the hassle Read the rest…
Category: Showcase
We have mentioned GMail, and Yahoo! Mail/Offpost. Now it is time for Hotmail to get into the Ajax action. The Hotmail team announced a new style with a preview pane, automatic inbox refreshing, drag and drop support, and real time email notification. Hotmail next Generation: Kanukah Microsoft Testing New Hotmail Hotmail improvements on the way
Category: JavaScript
Joe Walker (of DWR) has replied to the various comments on the A in Ajax. Joe shows how simple it is to not get burned in DWR: The secret sauce is DWREngine.setOrdered(true). Which does what it says on the tin – makes sure that we don’t dispatch a new Ajax call until the last one Read the rest…
Category: Dojo
, Editorial
The Dojo Toolkit is a very mature piece of JavaScript. One of the interesting pieces is the package system which has been explained by Dylan Schiemann The packaging system allows you to list a single script include file, which will then find and fetch packages as they are needed for your application, from the Dojo Read the rest…
Wednesday, July 13th, 2005
Category: Editorial
Nick Lothian ran into issues with the A in Ajax: One thing I see missing from most of the discussions about AJAX is implicit in its name: the calls are Asynchronous. This introduces the potential for some very nasty bugs when the state of the view is different to the state when the remote method Read the rest…