Many web applications need to offer an interface to order items - think about categories in a weblog, articles in a CMS, wishes in an e-commerce website... The old fashion way of doing it is to offer arrows to move one item up or down in the list. The AJAX way of doing it is to allow direct drag-and-drop ordering with server support.
Read Article Sponsored Links
Related Articles
» Errors That Developers Make With Ajax Errors That Developers Make With Ajax
Basic Things That Developers Must Avoid
While Ajax has been the subject of hype for its ability to make web applications much more interactive, with power comes responsibility, and Ajax can be dangerous in the hands of developers who do not know how to use it ...
» Will Your Web App Make Money? This is the first article the series on how to build web apps. Today, we’re tackling the important issue of cashflow and the financial viability of your web app. ...
» How-to make a simple AJAX mailing list form So you’re working on the next big Web 2.0. product but you’re not actually at the point where you can show anyone anything yet? The perfect solution is a page with a mailing list sign-up box so when you actually do launch, you can send off an email to thousands of prospective users. We’re doing it w ...
» Sorttable: Make all your tables sortable While the web design community gradually moves away from using tables to lay out the structure of a page, tables really do have a vital use, their original use; they're for laying out tabular data. ...
» Scriptaculous Lists with PHP The drag-and-drop effects, most notably the sortables, caught my eye because the look great, they are so easy to implement, and they're just so much nicer than the standard listbox with up/down arrows that we see in most of today's applications and administration tools. ...
» Make the XMLHttpRequest Object Work Cross-Browser Microsoft invented the XMLHttpRequest object for Internet Explorer, but it's now supported in Safari, Opera and Mozilla browsers, although the underlying implementation is different. Still, the interfaces are similar enough that with a little effort you can use the XMLHttpRequest object to exch ...
» Make asynchronous requests with JavaScript and Ajax I rarely read an entire article about a single object, especially one that is this simple. However, you will use this object over and over again in each page and application that you write that uses Ajax. This article shows you how to create XMLHttpRequest instances in a cross-browser way, construct ...
» Make an AJAX Website in Less than 10 Minutes I've been toying around with AJAX apps and XMLHttpRequest but have wanted to put up a site that loads all of its content asynchronously. If you're like me and you learn best from working with examples you're only 10 minutes away from your first AJAX website. ...
» Drag & Drop Sortable Lists with JavaScript and CSS In Web applications I've seen numerous — and personally implemented a few — ways to rearrange items in a list. All of those were indirect interactions typically involving something like up/down arrows next to each item. The most heinous require server roundtrips for each modification...boo. ...