Javascript on Steroids By: Admin
Ajax is a catchy name for a type of programming made popular in 2005 by Google
and other big web developers. Ajax loosely stands for A<...08-Apr-2010 |
Creating an HTML Form By: Admin
Before we can start getting to the exciting new stuff, we must first
make a standard HTML form (no submit button though!). This form will be
sp...08-Apr-2010 |
Browser Support By: Admin
This lesson includes one of the largest hurdles for aspiring Ajax programmers: browser support.
It would be nice if all the web...08-Apr-2010 |
XMLHttpRequest Object By: Admin
This lesson will show you how to use your object to communicate directly with the server!Before we even think about sending data to the server, ...08-Apr-2010 |
Server-Side PHP Script By: Admin
This lesson will
walk you through the process of creating a simple PHP script that displays the current
server time.The XMLHttpRequest08-Apr-2010 |
MySQL Database By: Admin
We already know how to run an external PHP script with AJAX, so let's take it
to the next level and pull some data down from a MySQL database. ...08-Apr-2010 |
Javascript Techniques By: Admin
The real trick of Ajax is updating a segment of the page without actually
having to reload the entire page. This little trick is often done by ...08-Apr-2010 |
Using a Callback Function By: Admin
For asynchronous requests, a callback function should be
created to check if the response is ready to be processed.
Create a callback function...08-Apr-2010 |
Implementing simple AJAX interaction in your Web Application using XMLHttpRequest object By: Admin
Everybody till now must have atleast heard about AJAX (Asynchronous
JavaScript And XML). This example will give you an idea about how you
can i...08-Apr-2010 |
AJAX - Server By: Admin
With the XMLHttpRequest object, you can request any web resource from a
server.
You can request TXT files, HTML files, XML files, p...08-Apr-2010 |
Example - AJAX Suggest By: Admin
AJAX is used to create more interactive applications.The following AJAX example will demonstrate how a web page can
communicate with a web serve...08-Apr-2010 |
AJAX Suggest Source Code By: Admin
The source code below belongs to the AJAX example on the previous page.You can copy and paste it, and try it yourself.There is...08-Apr-2010 |