Mar 10
Animations and Effects
With jQuery, we can easily add impact to our actions through a set of simple visual effects, and even craft our own,more sophisticated animations. jQuery effects certainly add flair, as is evident when we see elements gradually slide into view instead of appearing all at once. However, they can also provide important usability enhancements that [...]
Feb 3
Portals and AJAX
This chapter shows how JBoss portal blends the dynamism and rich functionality offered by AJAX with its strong portal architecture, to provide users with choices for developing highly-functional portal applications. It also discusses the limitations of the current specification and walks through an example that shows how easy it is to develop and deploy AJAX-based [...]
Jul 9
What is AJAX
This AJAX tutorial will teach you what is AJAX and how to use AJAX programming tools. AJAX is coming from Asynchronous JavaScript And XML. AJAX is programming technique combining client JavaScript code and Server-Side HTTP Requests. AJAX stands more popular in 2005 with Google Suggest.
Jul 9
AJAX Tutorial
To see how AJAX work, we will develop small AJAX Web Application. First of all we need some HTML file with forms to input data. This will be one input field where we can write some text – in our case this will be some name. This HTML file we will save under ajax.html name. The [...]
Jul 9
Prevent AJAX scripts from caching
AJAX is modern new technology which gives you an advanced way to improve the quality, speed and interactivity of internet applications. But the applications which intensively using AJAX, have one problem. To request data they make a URL post to server side script. This URL is cached by the client browser and even the server [...]
Dec 24
Image Gallery using Spry framework
This tutorial will explain how to create image gallery (thumbnail viewer) using Spry Widgets which come together with Dreamweaver CS3.
Dec 24
Display xml data in the table using Spry framework
This tutorial explains how to display xml data within html page using Dreamweaver´s Spry widgets
Apr 4
AJAX Demythified for PHP Programmers
All I want is to be able to USE the so-called buzz/hype/must-do technique called AJAX, and to be able to do this SIMPLY for a very SIMPLE purpose : to be able to trigger client-side queries to the server, whilst using PHP on the server to generate the client's DHTML code.
Dec 25
Mastering Ajax, Part 8: Using XML in requests and responses
In the last article of the series,you saw how your Ajax apps can format requests to a server in XML. You also saw why, in most cases, that isn't a good idea. This article focuses on something that often is a good idea: returning XML responses to a client.
Dec 25
Mastering Ajax, Part 7: Using XML in requests and responses
Brett McLaughlin demonstrates how you can use XML as the data format for sending asynchronous requests.
Dec 17
Creating Live Data with AJAX
This AJAX tutorial will show you how using PHP or some other server side language you can get data from your database without the need for a page refresh. This makes simple content updates smooth quick and very simple.
Dec 6
User-Proofing Ajax
Ajax is handy because it avoids needless browser behavior such as page reloads, but it can also be dangerous because it avoids useful browser behavior like error handling. Gone are the "Server not found" error messages and that familiar escape hatch, the Back button. When Ajax circumvents useful behavior, we have to make sure we [...]
Nov 19
Create your own Ajax effects
The basic and prebuilt effects in script.aculo.us are nice, but if you really want to build something great why not investigate doing your own, homegrown, do-it-yourself effects. In this tutorial you will learn how to take basic effects and build on them to create your own.
Nov 14
AJAX: Creating Huge Bookmarklets
A bookmarklet is a special piece of JavaScript code that can be dragged into a user's link toolbar, and which later can be clicked on to implement cross-site behavior. People have done all sorts of cool stuff with it.
Nov 14
AJAX Tutorial: Saving Session Across Page Loads Without...
This is a mini-tutorial on saving state across page loads on the client side, without using cookies so as to save large amounts of data beyond cookies size limits.