AJAX Introduction

What is Ajax?

Ajax stands “A”: Asynchronous,”JA”: JavaScript”X”: XML. It is a group of (JavaScript and Xml) interrelated web development techniques used on the client side to create interactive web application. Any server side technology that supports JavaScript also supports Ajax. • Foundation purpose of Ajax not to giving the output, but is to provide a simple and …

What is Ajax? Read More »

Why Ajax?

Ajax is popular and commonly uses script today for web application, it is because for the following reasons: 1. Speed and invisibility (all smart clients) makes for a very efficient user experience. 2. The smaller server resources footprint helps server scalability. 3. Dynamic and continuous user experiences. 4. Desktop-like user interfaces. AJAX is a web …

Why Ajax? Read More »

Technology used in Ajax

Ajax as a combination of set of technologies.   Use of Ajax is combination is of four things –   1: HTML/Xhtml, 2: JAVASCRIPT, 3: XML, 4: CSS.   2. JAVASCRIPT(ECMA Script) used for the local processing and DOM (Document Object model) data access inside the page or access elements of XML file read on …

Technology used in Ajax Read More »

Drawbacks of Ajax

Apart from the benefits Ajax also have some drawback which to be kept in mind while learning it: • If JavaScript is not activated, Ajax can’t works. • Another issue emerging from the dynamic nature of AJAX is a lack of interaction with search engines, Since data to display are loaded dynamically, they are not …

Drawbacks of Ajax Read More »