0% found this document useful (0 votes)
76 views3 pages

Web Development Client Side Web Applications Web Applications Server

AJAX allows web pages to be updated asynchronously by exchanging data with a server in the background without reloading the entire page. It uses a combination of technologies including XMLHttpRequest to retrieve data from the server, JavaScript and DOM to display/interact with the information on the page, and CSS to style the updated content. Some examples of AJAX applications are Google Maps, Gmail, YouTube, and Facebook tabs.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
76 views3 pages

Web Development Client Side Web Applications Web Applications Server

AJAX allows web pages to be updated asynchronously by exchanging data with a server in the background without reloading the entire page. It uses a combination of technologies including XMLHttpRequest to retrieve data from the server, JavaScript and DOM to display/interact with the information on the page, and CSS to style the updated content. Some examples of AJAX applications are Google Maps, Gmail, YouTube, and Facebook tabs.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 3

 “AJAX ­  ASYNCHRONOUS JAVA SCRIPT AND XML”

 Tthe art of exchanging data with a server, and update parts of a web page ­ 
without reloading the whole page.
 It s a group of interrelated web development techniques used on the client­side 
to create interactive web applications.
 With Ajax, web applications can retrieve data from the server asynchronously 
in the background without interfering with the display and behavior of the 
existing page
  The use of Ajax techniques has led to an increase in interactive or dynamic 
interfaces on web pages. Data are usually retrieved using the XMLHttpRequest 
object. 
 AJAX applications are browser­ and platform­independent!
 Examples of applications using AJAX: Google Maps, Gmail, Youtube, and 
Facebook tabs
 AJAX is based on internet standards, and uses a combination of:
• XMLHttpRequest object (to exchange data asynchronously with a server) 
• JavaScript/DOM (to display/interact with the information) 
• CSS (to style the data) 
• XML (often used as the format for transferring data) 

   
  
“CSS – CASCADING STYLE SHEET”

 Styles define how to display HTML elements
 Styles were added to HTML 4.0 to solve a problem

 CSS Syntax
A CSS rule has two main parts: a selector, and one or more declarations:

 The selector is normally the HTML element you want to style.
             Each declaration consists of a property and a value.
 CSS Example :
p
{
color:red;
text­align:center;

 Three Ways to Insert CSS
   External 
 Internal
 Inline
                                  
    

You might also like