This tutorial looks at how to use Ajax to dynamically include the contents of an external page onto the current one automatically each time the page is requested.
Ajax Includes Script JavaScript / AJAX
This script uses Ajax (DHTML interacting with the server) to let you dynamically include the contents of an external page onto the current document.
Dynamic Ajax Content JavaScript / AJAX
This script uses Ajax to enable you to load external pages into a DIV without having to reload the browser or use IFRAMES. If your external pages reference any external .css or .js files for styling, this script can also load and apply them to the page on demand.
Ajax XML ticker (txt file) JavaScript / AJAX
This is an Ajax enhanced ticker script that lets you use a text file as the contents of the ticker to show! Easily define your messages, which support rich HTML, all inside this external text file.
Ajax Rotating Includes Script JavaScript / AJAX
This script lets you input a list of external pages for the script to choose and selectively include one onto the current page, using Ajax. You can choose to display a different file for each day of the week, month, or randomly.
Ajax Tabs Content script JavaScript / AJAX
This tab content script uses Ajax to let you display a selection of external content on your page inside a DIV and via CSS tabs! We got our inspiration for this script from Yahoo's new homepage, which employs such a concept to show news in an organized fashion.
Advanced RSS Ticker (Ajax invocation) JavaScript / AJAX
RSS is a popular format for syndicating and displaying external content on your site, such as the latest headlines from CNN. Well, with this powerful RSS ticker script, you can now easily display any RSS content on your site in a ticker fashion! This script uses a simple PHP based RSS parser called LastRSS for retrieving a RSS feed, then Ajax and DHTML to display the feed dynamically and with flare. As a pre-requisite then, your site itself must support PHP, though the page using this ticker can be any regular HTML file.
Introduction to AJAX JavaScript / AJAX
What is AJAX, what it is not, how it works. What are AJAX frameworks. The XMLHttpRequest object. Short introduction to AJAX with a basic example.
Basic Ajax Routine (get & post) JavaScript / AJAX
Regardless of what you do using Ajax, they all rely on the same basic functions. This is a very small Ajax routine (less than 3 Kb) that enables you to easily use Ajax on your site to send "GET" or "POST" requests asynchronously.
AJAX Hello World! JavaScript / AJAX
This tutorial will teach you how to create a hello world web page using AJAX technologies. Odds are if you found this tutorial, then you have created a "Hello World!" program before. Hello World is the most basic program that you can write, and every language out there has one written. It basically shows you how to use the language or technology to display a result on the screen.
AJAX Tutorial For Beginners JavaScript / AJAX
What is AJAX? AJAX stands for Asynchronous JavaScript and XML. AJAX uses a combination of Javascript and XML to allow web pages to be updated with new data from the server. It consists of HTML, JavaScript, DHTML, and DOM. The traditional way of processing data between client's browser and a server was to submit a HTML form and send data to the server, the server processed the data and sent a response back to the browser.