Archive

Archive for the ‘AJAX’ Category

Create an Ajax-Based Auto-Completing Search Field for your Wordpress Theme

October 1st, 2009

Why not helping your visitors to find what they’re looking for on your blog, by using a cool auto-completion on your search field? To do so, we’ll use Wordpress tagcloud, php and ajax.
Please note that even if this code is fully functional, this is an experimentation, and the SQL query isn’t really optimized.
The idea
We will [...]

Read More >>



Create an Amazing Contact Form with Ajax without Plugin

September 18th, 2009

Every website should have a contact form. In this tutorial we will make a contact form that will make your visitors say WOW. It will be a cool looking contact form with nice and smooth validation, processed with AJAX.

Read More >>



Create a Ajax based Form Submission with jQuery

September 8th, 2009

AJAX

AJAX has changed the world of web development. Look at digg, facebook and gmail, thery are good examples to show the capability of AJAX. AJAX can create a highly responsive web interface and increase the user experience.
AJAX is abbrieviated from Asynchrounous javascript and XML. It’s not a new technology, but the implementation of a group [...]

Read More >>



A Simple AJAX Driven Website with jQuery and PHP

September 5th, 2009

Introduction
AJAX is abbrieviated from Asynchrounous javascript and XML. It’s not a new technology, but the implementation of a group of technologies to achieve a seamless interaction between client and server.
Typically, xhtml and css to present the information, javascript is used to handle user interactions, and a server side language to perform the users’ requests (and [...]

Read More >>



Build a Live Search with Ajax

September 1st, 2009

In this tutorial we’ll be using JQuery to perform a search on a mysql table without waiting for a new page to load. First of all we’re going to build the php document which will be used by JQuery to perform the search.

Read More >>