Category Archives: Ajax

 

More AJAX tutorials to come. Make sure you subscribe to get notified.

AJAX stands for Asynchronous JavaScript and XML, and it is a programming technique used for creating dynamic and interactive web pages. It allows web pages to update content dynamically without requiring a full page reload.

AJAX programming language is not a programming language in itself, but rather a combination of existing technologies including HTML, CSS, JavaScript, and XML. AJAX makes use of JavaScript to send and receive data asynchronously in the background, without interrupting the user experience.

AJAX has become a popular technique for web developers because it improves the performance and user experience of web applications. For example, it can be used to create auto-suggest search boxes, real-time chat applications, and dynamic forms that update as the user interacts with them.

In addition, many JavaScript frameworks and libraries such as jQuery, React, and Angular have built-in support for AJAX, making it easier for developers to use and implement in their web applications.

Overall, AJAX is a powerful programming technique for web development that enables the creation of dynamic, interactive, and fast-loading web applications that provide a better user experience.

AJAX Raw Or With jQuery Whats The Difference

The difference between AJAX raw and AJAX with jQuery is a matter of personal preference really. When you program with raw JavaScript you do not have to worry about bringing in external libraries. When you program AJAX with jQuery then you must bring in the external libraries. On the other hand jQuery syntax is easier Read More

Ajax With Multiple Forms And One PHP Processing File

You only need to have one processing file in PHP when you are working with AJAX. If you have more than one processing file for every from you create you are wasting your time. This will make your programming less confusing. Lets dive into how using one processing form in PHP is more efficient. Previous Lessons Read More

Change Color On A Webpage With Ajax

You can change a color on a web page with ajax. In this tutorial we make use of the HTML input type of color. We then generate an Ajax request to the processor. This in turn returns CSS code that changes the color on the webpage. To see how this is done watch the video. Read More

Ajax How To Process More Than One Form Item

In this Ajax tutorial, you will learn how to process more than one form item. Ajax is very fast and can retrieve data in a split second. In the last ajax tutorial we showed you how to process one form item. Usually when you need a form on a web page, you need to process Read More

best-ajax-tutorial simple and easy to understand

This is the best Ajax tutorial. Learn how to submit a form without reloading a page. Ajax can do that for you. Here is a very simple tutorial with the code that will help you get started using Ajax in your applications. The XMLHttpRequest Object The XMLHttpRequest object can be used to request data from Read More