SlideShare a Scribd company logo
AJAX Ajax (shorthand for asynchronous JavaScript and XML) is 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 is usually retrieved using the XMLHttpRequest object. Despite the name, the use of XML is not actually required, nor do the requests need to be asynchronous. Like DHTML and LAMP, Ajax is not a technology in itself, but a group of technologies. Ajax uses a combination of HTML and CSS to mark up and style information. The DOM is accessed with JavaScript to dynamically display, and to allow the user to interact with the information presented. JavaScript and the XMLHttpRequest object provide a method for exchanging data asynchronously between browser and server to avoid full page reloads .
HOW AJAX WORKS
AJAX is Based on Internet Standards 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) lamp  AJAX applications are browser- and platform-independent! Google Suggest AJAX was made popular in 2005 by Google, with Google Suggest. Google Suggest is using AJAX to create a very dynamic web interface: When you start typing in Google's search box, a JavaScript sends the letters off to a server and the server returns a list of suggestions.
AJAX Example Explained The AJAX application above contains one div section and one button. The div section will be used to display information returned from a server. The button calls a function named loadXMLDoc(), if it is clicked: <html> <body> <div id=&quot;myDiv&quot;><h2>Let AJAX change this text</h2></div> <button type=&quot;button&quot; onclick=&quot;loadXMLDoc()&quot;>Change Content</button> </body> </html> Next, add a <script> tag to the page's head section. The script section contains the loadXMLDoc() function: <head> <script type=&quot;text/javascript&quot;> function loadXMLDoc() { .... AJAX script goes here ... } </script> </head>
AJAX XMLHttpRequest AJAX - Create an XMLHttpRequest Object The XMLHttpRequest Object All modern browsers support the XMLHttpRequest object (IE5 and IE6 uses an ActiveXObject). The XMLHttpRequest object is used to exchange data with a server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.
Create an XMLHttpRequest Object All modern browsers (IE7+, Firefox, Chrome, Safari, and Opera) has a built-in XMLHttpRequest object. Syntax for creating an XMLHttpRequest object: xmlhttp=new XMLHttpRequest(); Old versions of Internet Explorer (IE5 and IE6) uses an ActiveX Object: xmlhttp=new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;); To handle all modern browsers, including IE5 and IE6, check if the browser supports the XMLHttpRequest object. If it does, create an XMLHttpRequest object, if not, create an ActiveXObject: Example if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;); }
AJAX - Send a Request To a Server Send a Request To a Server To send a request to a server, we use the open() and send() methods of the XMLHttpRequest object: xmlhttp.open(&quot;GET&quot;,&quot;ajax_info.txt&quot;,true); xmlhttp.send(); Method    Description open(method,url,async)    Specifies the type of request, the URL, and if  the request should be handled asynchronously or not. method: the type of request: GET or POST url: the location of the file on the server async: true (asynchronous) or false (synchronous) send(string)    Sends the request off to the server. string: Only used for POST requests
GET or POST? GET is simpler and faster than POST, and can be used in most cases. However, always use POST requests when: * A cached file is not an option (update a file or database on the server) * Sending a large amount of data to the server (POST has no size limitations) * Sending user input (which can contain unknown characters), POST is more robust and secure than G
GET Requests A simple GET request: Example xmlhttp.open(&quot;GET&quot;,&quot;demo_get.asp&quot;,true); xmlhttp.send(); In the example above, you may get a cached result. To avoid this, add a unique ID to the URL: Example xmlhttp.open(&quot;GET&quot;,&quot;demo_get.asp?t=&quot; + Math.random(),true); xmlhttp.send(); If you want to send information with the GET method, add the information to the URL: Example xmlhttp.open(&quot;GET&quot;,&quot;demo_get2.asp?fname=Henry&lname=Ford&quot;,true); xmlhttp.send();
POST Requests A simple POST request: Example xmlhttp.open(&quot;POST&quot;,&quot;demo_post.asp&quot;,true); xmlhttp.send(); To POST data like an HTML form, add an HTTP header with setRequestHeader(). Specify the data you want to send in the send() method: Example xmlhttp.open(&quot;POST&quot;,&quot;ajax_test.asp&quot;,true); xmlhttp.setRequestHeader(&quot;Content-type&quot;,&quot;application/x-www-form-urlencoded&quot;); xmlhttp.send(&quot;fname=Henry&lname=Ford&quot;);
The url - A File On a Server The url parameter of the open() method, is an address to a file on a server: xmlhttp.open(&quot;GET&quot;,&quot;ajax_test.asp&quot;,true); The file can be any kind of file, like .txt and .xml, or server scripting files like .asp and .php (which can perform actions on the server before sending the response back). Asynchronous - True or False? AJAX stands for Asynchronous JavaScript and XML, and for the XMLHttpRequest object to behave as AJAX, the async parameter of the open() method has to be set to true: xmlhttp.open(&quot;GET&quot;,&quot;ajax_test.asp&quot;,true); Sending asynchronously requests is a huge improvement for web developers. Many of the tasks performed on the server are very time consuming. Before AJAX, this operation could cause the application to hang or stop. With AJAX, the JavaScript does not have to wait for the server response, but can instead: * execute other scripts while waiting for server response * deal with the response when the response ready
Async=true When using async=true, specify a function to execute when the response is ready in the onreadystatechange event: Example xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById(&quot;myDiv&quot;).innerHTML=xmlhttp.responseText; } } xmlhttp.open(&quot;GET&quot;,&quot;ajax_info.txt&quot;,true); xmlhttp.send(); Async=false To use async=false, change the third parameter in the open() method to false: xmlhttp.open(&quot;GET&quot;,&quot;ajax_info.txt&quot;,false); Using async=false is not recommended, but for a few small requests this can be ok. Remember that the JavaScript will NOT continue to execute, until the server response is ready. If the server is busy or slow, the application will hang or stop. Note: When you use async=false, do NOT write an onreadystatechange function - just put the code after the send() statement: Example xmlhttp.open(&quot;GET&quot;,&quot;ajax_info.txt&quot;,false); xmlhttp.send(); document.getElementById(&quot;myDiv&quot;).innerHTML=xmlhttp.responseText;
AJAX - Server Response Server Response To get the response from a server, use the responseText or responseXML property of the XMLHttpRequest object. Property    Description responseText    get the response data as a string responseXML    get the response data as XML data The responseText Property If the response from the server is not XML, use the responseText property. The responseText property returns the response as a string, and you can use it accordingly: Example document.getElementById(&quot;myDiv&quot;).innerHTML=xmlhttp.responseText;
The responseXML Property If the response from the server is XML, and you want to parse it as an XML object, use the responseXML property: Example Request the file cd_catalog.xml and parse the response: xmlDoc=xmlhttp.responseXML; var txt=&quot;&quot;; x=xmlDoc.getElementsByTagName(&quot;ARTIST&quot;); for (i=0;i<x.length;i++) { txt=txt + x[i].childNodes[0].nodeValue + &quot;<br />&quot;; } document.getElementById(&quot;myDiv&quot;).innerHTML=txt;
AJAX - The onreadystatechange Event The onreadystatechange event When a request to a server is sent, we want to perform some actions based on the response. The onreadystatechange event is triggered every time the readyState changes. The readyState property holds the status of the XMLHttpRequest. Three important properties of the XMLHttpRequest object: Property    Description onreadystatechange    Stores a function (or the name of a function) to be  called automatically each time the readyState property changes  readyState    Holds the status of the XMLHttpRequest. Changes from 0 to 4: 0: request not initialized 1: server connection established 2: request received 3: processing request 4: request finished and response is ready status    200: &quot;OK&quot; 404: Page not found
xmlhttp.onreadystatechange=function() Example { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById(&quot;myDiv&quot;).innerHTML=xmlhttp.responseText; } } When readyState is 4 and status is 200, the response is ready:
Using a Callback Function A callback function is a function passed as a parameter to another function. If you have more than one AJAX task on your website, you should create ONE standard function for creating the XMLHttpRequest object, and call this for each AJAX task. The function call should contain the URL and what to do on onreadystatechange (which is probably different for each call): Example function myFunction() { loadXMLDoc(&quot;ajax_info.txt&quot;,function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById(&quot;myDiv&quot;).innerHTML=xmlhttp.responseText; } }); }
 
AJAX ADVANCED
AJAX ASP/PHP Example Example Start typing a name in the input field below: First name: Suggestions:
The PHP File Below is the code above rewritten in PHP. Note: To run the example in PHP, change the value of the url variable (in the HTML file) from &quot;gethint.asp&quot; to &quot;gethint.php&quot;. <?php // Fill up array with names $a[]=&quot;Anna&quot;; $a[]=&quot;Brittany&quot;; $a[]=&quot;Cinderella&quot;; $a[]=&quot;Diana&quot;; $a[]=&quot;Eva&quot;; $a[]=&quot;Fiona&quot;; $a[]=&quot;Gunda&quot;; $a[]=&quot;Hege&quot;; $a[]=&quot;Inga&quot;; $a[]=&quot;Johanna&quot;; $a[]=&quot;Kitty&quot;; $a[]=&quot;Linda&quot;; $a[]=&quot;Nina&quot;; $a[]=&quot;Ophelia&quot;; $a[]=&quot;Petunia&quot;; $a[]=&quot;Amanda&quot;; $a[]=&quot;Raquel&quot;;
$a[]=&quot;Cindy&quot;; $a[]=&quot;Doris&quot;; $a[]=&quot;Eve&quot;; $a[]=&quot;Evita&quot;; $a[]=&quot;Sunniva&quot;; $a[]=&quot;Tove&quot;; $a[]=&quot;Unni&quot;; $a[]=&quot;Violet&quot;; $a[]=&quot;Liza&quot;; $a[]=&quot;Elizabeth&quot;; $a[]=&quot;Ellen&quot;; $a[]=&quot;Wenche&quot;; $a[]=&quot;Vicky&quot;; //get the q parameter from URL $q=$_GET[&quot;q&quot;]; //lookup all hints from array if length of q>0 if (strlen($q) > 0) { $hint=&quot;&quot;; for($i=0; $i<count($a); $i++) { if (strtolower($q)==strtolower(substr($a[$i],0,strlen($q)))) { if ($hint==&quot;&quot;)
$hint=$a[$i]; } else { $hint=$hint.&quot; , &quot;.$a[$i]; } } } } // Set output to &quot;no suggestion&quot; if no hint were found // or to the correct values if ($hint == &quot;&quot;) { $response=&quot;no suggestion&quot;; } else { $response=$hint; } //output the response echo $response; ?>
AJAX Database Example Example Explained - The showCustomer() Function When a user selects a customer in the dropdown list above, a function called &quot;showCustomer()&quot; is executed. The function is triggered by the &quot;onchange&quot; event: function showCustomer(str) { if (str==&quot;&quot;) { document.getElementById(&quot;txtHint&quot;).innerHTML=&quot;&quot;; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById(&quot;txtHint&quot;).innerHTML=xmlhttp.responseText; } } xmlhttp.open(&quot;GET&quot;,&quot;getcustomer.asp?q=&quot;+str,true); xmlhttp.send();
The AJAX Server Page The page on the server called by the JavaScript above is an ASP file called &quot;getcustomer.asp&quot;. The server file could easily be rewritten in PHP, or some other server languages. Look at a corresponding example in PHP. The source code in &quot;getcustomer.asp&quot; runs a query against a database, and returns the result in an HTML table: <% response.expires=-1 sql=&quot;SELECT * FROM CUSTOMERS WHERE CUSTOMERID=&quot; sql=sql & &quot;'&quot; & request.querystring(&quot;q&quot;) & &quot;'&quot; set conn=Server.CreateObject(&quot;ADODB.Connection&quot;) conn.Provider=&quot;Microsoft.Jet.OLEDB.4.0&quot; conn.Open(Server.Mappath(&quot;/db/northwind.mdb&quot;)) set rs=Server.CreateObject(&quot;ADODB.recordset&quot;) rs.Open sql,conn response.write(&quot;<table>&quot;) do until rs.EOF for each x in rs.Fields response.write(&quot;<tr><td><b>&quot; & x.name & &quot;</b></td>&quot;) response.write(&quot;<td>&quot; & x.value & &quot;</td></tr>&quot;) next rs.MoveNext loop response.write(&quot;</table>&quot;) %>
AJAX XML Example AJAX can be used for interactive communication with an XML file. The following example will demonstrate how a web page can fetch information from an XML file with AJAX: Example Get CD info Example Explained - The stateChange() Function When a user clicks on the &quot;Get CD info&quot; button above, the loadXMLDoc() function is executed. The loadXMLDoc() function creates an XMLHttpRequest object, adds the function to be executed when the server response is ready, and sends the request off to the server. When the server response is ready, an HTML table is built, nodes (elements) are extracted from the XML file, and it finally updates the txtCDInfo placeholder with the HTML table filled with XML data:
Thank you

More Related Content

What's hot

M Ramya
M RamyaM Ramya
jQuery Ajax
jQuery AjaxjQuery Ajax
jQuery Ajax
Anand Kumar Rajana
 
An Introduction to Ajax Programming
An Introduction to Ajax ProgrammingAn Introduction to Ajax Programming
An Introduction to Ajax Programminghchen1
 
Implementing Ajax In ColdFusion 7
Implementing Ajax In ColdFusion 7Implementing Ajax In ColdFusion 7
Implementing Ajax In ColdFusion 7
Pranav Prakash
 
Web II - 02 - How ASP.NET Works
Web II - 02 - How ASP.NET WorksWeb II - 02 - How ASP.NET Works
Web II - 02 - How ASP.NET Works
Randy Connolly
 
Asynchronous JavaScript & XML (AJAX)
Asynchronous JavaScript & XML (AJAX)Asynchronous JavaScript & XML (AJAX)
Asynchronous JavaScript & XML (AJAX)
Adnan Sohail
 
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />tutorialsruby
 
What is Ajax technology?
What is Ajax technology?What is Ajax technology?
What is Ajax technology?
JavaTpoint.Com
 
ASP.NET 12 - State Management
ASP.NET 12 - State ManagementASP.NET 12 - State Management
ASP.NET 12 - State Management
Randy Connolly
 
Ajax presentation
Ajax presentationAjax presentation
Ajax presentation
Bharat_Kumawat
 
Ajax Overview by Bally Chohan
Ajax Overview by Bally ChohanAjax Overview by Bally Chohan
Ajax Overview by Bally Chohan
WebVineet
 

What's hot (20)

Ajax Ppt
Ajax PptAjax Ppt
Ajax Ppt
 
Ajax
AjaxAjax
Ajax
 
M Ramya
M RamyaM Ramya
M Ramya
 
jQuery Ajax
jQuery AjaxjQuery Ajax
jQuery Ajax
 
An Introduction to Ajax Programming
An Introduction to Ajax ProgrammingAn Introduction to Ajax Programming
An Introduction to Ajax Programming
 
Ajax.ppt
Ajax.pptAjax.ppt
Ajax.ppt
 
Implementing Ajax In ColdFusion 7
Implementing Ajax In ColdFusion 7Implementing Ajax In ColdFusion 7
Implementing Ajax In ColdFusion 7
 
Web II - 02 - How ASP.NET Works
Web II - 02 - How ASP.NET WorksWeb II - 02 - How ASP.NET Works
Web II - 02 - How ASP.NET Works
 
Ajax
AjaxAjax
Ajax
 
JSON and XML
JSON and XMLJSON and XML
JSON and XML
 
Ajax and Jquery
Ajax and JqueryAjax and Jquery
Ajax and Jquery
 
RicoAjaxEngine
RicoAjaxEngineRicoAjaxEngine
RicoAjaxEngine
 
Asynchronous JavaScript & XML (AJAX)
Asynchronous JavaScript & XML (AJAX)Asynchronous JavaScript & XML (AJAX)
Asynchronous JavaScript & XML (AJAX)
 
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />
 
What is Ajax technology?
What is Ajax technology?What is Ajax technology?
What is Ajax technology?
 
Ajax
AjaxAjax
Ajax
 
ASP.NET 12 - State Management
ASP.NET 12 - State ManagementASP.NET 12 - State Management
ASP.NET 12 - State Management
 
Mashup
MashupMashup
Mashup
 
Ajax presentation
Ajax presentationAjax presentation
Ajax presentation
 
Ajax Overview by Bally Chohan
Ajax Overview by Bally ChohanAjax Overview by Bally Chohan
Ajax Overview by Bally Chohan
 

Similar to Ajax ppt

Ajax presentation
Ajax presentationAjax presentation
Ajax presentation
engcs2008
 
Core Java tutorial at Unit Nexus
Core Java tutorial at Unit NexusCore Java tutorial at Unit Nexus
Core Java tutorial at Unit Nexus
Unit Nexus Pvt. Ltd.
 
AJAX Workshop Notes
AJAX Workshop NotesAJAX Workshop Notes
AJAX Workshop Notes
Pamela Fox
 
Ajax
AjaxAjax
Ajax
AjaxAjax
AJAX.pptx
AJAX.pptxAJAX.pptx
AJAX.pptx
ssuser0a07a1
 
Ajax Introduction
Ajax IntroductionAjax Introduction
Ajax Introduction
Oliver Cai
 
AJAX
AJAXAJAX
AJAXARJUN
 
AJAX
AJAXAJAX
AJAX
AJAXAJAX
Ajax
AjaxAjax
jQuery : Talk to server with Ajax
jQuery : Talk to server with AjaxjQuery : Talk to server with Ajax
jQuery : Talk to server with AjaxWildan Maulana
 
Ajax.ppt
Ajax.pptAjax.ppt
Ajax.ppt
ssuser9d62d6
 
Ajax and xml
Ajax and xmlAjax and xml
Ajax and xml
sawsan slii
 

Similar to Ajax ppt (20)

Ajax presentation
Ajax presentationAjax presentation
Ajax presentation
 
Core Java tutorial at Unit Nexus
Core Java tutorial at Unit NexusCore Java tutorial at Unit Nexus
Core Java tutorial at Unit Nexus
 
AJAX Workshop Notes
AJAX Workshop NotesAJAX Workshop Notes
AJAX Workshop Notes
 
Ajax
AjaxAjax
Ajax
 
Ajax
AjaxAjax
Ajax
 
Ajax
AjaxAjax
Ajax
 
AJAX.pptx
AJAX.pptxAJAX.pptx
AJAX.pptx
 
Ajax Introduction
Ajax IntroductionAjax Introduction
Ajax Introduction
 
Ajax
AjaxAjax
Ajax
 
AJAX
AJAXAJAX
AJAX
 
Ajaxppt
AjaxpptAjaxppt
Ajaxppt
 
Ajaxppt
AjaxpptAjaxppt
Ajaxppt
 
AJAX
AJAXAJAX
AJAX
 
AJAX
AJAXAJAX
AJAX
 
ajax_pdf
ajax_pdfajax_pdf
ajax_pdf
 
Ajax
AjaxAjax
Ajax
 
jQuery : Talk to server with Ajax
jQuery : Talk to server with AjaxjQuery : Talk to server with Ajax
jQuery : Talk to server with Ajax
 
AJAX
AJAXAJAX
AJAX
 
Ajax.ppt
Ajax.pptAjax.ppt
Ajax.ppt
 
Ajax and xml
Ajax and xmlAjax and xml
Ajax and xml
 

More from Sanmuga Nathan (8)

Html Ppt
Html PptHtml Ppt
Html Ppt
 
Web2.0 ppt
Web2.0 pptWeb2.0 ppt
Web2.0 ppt
 
Apache ppt
Apache pptApache ppt
Apache ppt
 
CSS ppt
CSS pptCSS ppt
CSS ppt
 
Html ppt
Html pptHtml ppt
Html ppt
 
Linux ppt
Linux pptLinux ppt
Linux ppt
 
Mysql ppt
Mysql pptMysql ppt
Mysql ppt
 
Php ppt
Php pptPhp ppt
Php ppt
 

Recently uploaded

The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
rosedainty
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
AzmatAli747758
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
EduSkills OECD
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
Anna Sz.
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
Nguyen Thanh Tu Collection
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
GeoBlogs
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
Steve Thomason
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
PedroFerreira53928
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
Excellence Foundation for South Sudan
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
Jheel Barad
 

Recently uploaded (20)

The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 

Ajax ppt

  • 1. AJAX Ajax (shorthand for asynchronous JavaScript and XML) is 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 is usually retrieved using the XMLHttpRequest object. Despite the name, the use of XML is not actually required, nor do the requests need to be asynchronous. Like DHTML and LAMP, Ajax is not a technology in itself, but a group of technologies. Ajax uses a combination of HTML and CSS to mark up and style information. The DOM is accessed with JavaScript to dynamically display, and to allow the user to interact with the information presented. JavaScript and the XMLHttpRequest object provide a method for exchanging data asynchronously between browser and server to avoid full page reloads .
  • 3. AJAX is Based on Internet Standards 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) lamp AJAX applications are browser- and platform-independent! Google Suggest AJAX was made popular in 2005 by Google, with Google Suggest. Google Suggest is using AJAX to create a very dynamic web interface: When you start typing in Google's search box, a JavaScript sends the letters off to a server and the server returns a list of suggestions.
  • 4. AJAX Example Explained The AJAX application above contains one div section and one button. The div section will be used to display information returned from a server. The button calls a function named loadXMLDoc(), if it is clicked: <html> <body> <div id=&quot;myDiv&quot;><h2>Let AJAX change this text</h2></div> <button type=&quot;button&quot; onclick=&quot;loadXMLDoc()&quot;>Change Content</button> </body> </html> Next, add a <script> tag to the page's head section. The script section contains the loadXMLDoc() function: <head> <script type=&quot;text/javascript&quot;> function loadXMLDoc() { .... AJAX script goes here ... } </script> </head>
  • 5. AJAX XMLHttpRequest AJAX - Create an XMLHttpRequest Object The XMLHttpRequest Object All modern browsers support the XMLHttpRequest object (IE5 and IE6 uses an ActiveXObject). The XMLHttpRequest object is used to exchange data with a server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.
  • 6. Create an XMLHttpRequest Object All modern browsers (IE7+, Firefox, Chrome, Safari, and Opera) has a built-in XMLHttpRequest object. Syntax for creating an XMLHttpRequest object: xmlhttp=new XMLHttpRequest(); Old versions of Internet Explorer (IE5 and IE6) uses an ActiveX Object: xmlhttp=new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;); To handle all modern browsers, including IE5 and IE6, check if the browser supports the XMLHttpRequest object. If it does, create an XMLHttpRequest object, if not, create an ActiveXObject: Example if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;); }
  • 7. AJAX - Send a Request To a Server Send a Request To a Server To send a request to a server, we use the open() and send() methods of the XMLHttpRequest object: xmlhttp.open(&quot;GET&quot;,&quot;ajax_info.txt&quot;,true); xmlhttp.send(); Method Description open(method,url,async) Specifies the type of request, the URL, and if the request should be handled asynchronously or not. method: the type of request: GET or POST url: the location of the file on the server async: true (asynchronous) or false (synchronous) send(string) Sends the request off to the server. string: Only used for POST requests
  • 8. GET or POST? GET is simpler and faster than POST, and can be used in most cases. However, always use POST requests when: * A cached file is not an option (update a file or database on the server) * Sending a large amount of data to the server (POST has no size limitations) * Sending user input (which can contain unknown characters), POST is more robust and secure than G
  • 9. GET Requests A simple GET request: Example xmlhttp.open(&quot;GET&quot;,&quot;demo_get.asp&quot;,true); xmlhttp.send(); In the example above, you may get a cached result. To avoid this, add a unique ID to the URL: Example xmlhttp.open(&quot;GET&quot;,&quot;demo_get.asp?t=&quot; + Math.random(),true); xmlhttp.send(); If you want to send information with the GET method, add the information to the URL: Example xmlhttp.open(&quot;GET&quot;,&quot;demo_get2.asp?fname=Henry&lname=Ford&quot;,true); xmlhttp.send();
  • 10. POST Requests A simple POST request: Example xmlhttp.open(&quot;POST&quot;,&quot;demo_post.asp&quot;,true); xmlhttp.send(); To POST data like an HTML form, add an HTTP header with setRequestHeader(). Specify the data you want to send in the send() method: Example xmlhttp.open(&quot;POST&quot;,&quot;ajax_test.asp&quot;,true); xmlhttp.setRequestHeader(&quot;Content-type&quot;,&quot;application/x-www-form-urlencoded&quot;); xmlhttp.send(&quot;fname=Henry&lname=Ford&quot;);
  • 11. The url - A File On a Server The url parameter of the open() method, is an address to a file on a server: xmlhttp.open(&quot;GET&quot;,&quot;ajax_test.asp&quot;,true); The file can be any kind of file, like .txt and .xml, or server scripting files like .asp and .php (which can perform actions on the server before sending the response back). Asynchronous - True or False? AJAX stands for Asynchronous JavaScript and XML, and for the XMLHttpRequest object to behave as AJAX, the async parameter of the open() method has to be set to true: xmlhttp.open(&quot;GET&quot;,&quot;ajax_test.asp&quot;,true); Sending asynchronously requests is a huge improvement for web developers. Many of the tasks performed on the server are very time consuming. Before AJAX, this operation could cause the application to hang or stop. With AJAX, the JavaScript does not have to wait for the server response, but can instead: * execute other scripts while waiting for server response * deal with the response when the response ready
  • 12. Async=true When using async=true, specify a function to execute when the response is ready in the onreadystatechange event: Example xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById(&quot;myDiv&quot;).innerHTML=xmlhttp.responseText; } } xmlhttp.open(&quot;GET&quot;,&quot;ajax_info.txt&quot;,true); xmlhttp.send(); Async=false To use async=false, change the third parameter in the open() method to false: xmlhttp.open(&quot;GET&quot;,&quot;ajax_info.txt&quot;,false); Using async=false is not recommended, but for a few small requests this can be ok. Remember that the JavaScript will NOT continue to execute, until the server response is ready. If the server is busy or slow, the application will hang or stop. Note: When you use async=false, do NOT write an onreadystatechange function - just put the code after the send() statement: Example xmlhttp.open(&quot;GET&quot;,&quot;ajax_info.txt&quot;,false); xmlhttp.send(); document.getElementById(&quot;myDiv&quot;).innerHTML=xmlhttp.responseText;
  • 13. AJAX - Server Response Server Response To get the response from a server, use the responseText or responseXML property of the XMLHttpRequest object. Property Description responseText get the response data as a string responseXML get the response data as XML data The responseText Property If the response from the server is not XML, use the responseText property. The responseText property returns the response as a string, and you can use it accordingly: Example document.getElementById(&quot;myDiv&quot;).innerHTML=xmlhttp.responseText;
  • 14. The responseXML Property If the response from the server is XML, and you want to parse it as an XML object, use the responseXML property: Example Request the file cd_catalog.xml and parse the response: xmlDoc=xmlhttp.responseXML; var txt=&quot;&quot;; x=xmlDoc.getElementsByTagName(&quot;ARTIST&quot;); for (i=0;i<x.length;i++) { txt=txt + x[i].childNodes[0].nodeValue + &quot;<br />&quot;; } document.getElementById(&quot;myDiv&quot;).innerHTML=txt;
  • 15. AJAX - The onreadystatechange Event The onreadystatechange event When a request to a server is sent, we want to perform some actions based on the response. The onreadystatechange event is triggered every time the readyState changes. The readyState property holds the status of the XMLHttpRequest. Three important properties of the XMLHttpRequest object: Property Description onreadystatechange Stores a function (or the name of a function) to be called automatically each time the readyState property changes readyState Holds the status of the XMLHttpRequest. Changes from 0 to 4: 0: request not initialized 1: server connection established 2: request received 3: processing request 4: request finished and response is ready status 200: &quot;OK&quot; 404: Page not found
  • 16. xmlhttp.onreadystatechange=function() Example { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById(&quot;myDiv&quot;).innerHTML=xmlhttp.responseText; } } When readyState is 4 and status is 200, the response is ready:
  • 17. Using a Callback Function A callback function is a function passed as a parameter to another function. If you have more than one AJAX task on your website, you should create ONE standard function for creating the XMLHttpRequest object, and call this for each AJAX task. The function call should contain the URL and what to do on onreadystatechange (which is probably different for each call): Example function myFunction() { loadXMLDoc(&quot;ajax_info.txt&quot;,function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById(&quot;myDiv&quot;).innerHTML=xmlhttp.responseText; } }); }
  • 18.  
  • 20. AJAX ASP/PHP Example Example Start typing a name in the input field below: First name: Suggestions:
  • 21. The PHP File Below is the code above rewritten in PHP. Note: To run the example in PHP, change the value of the url variable (in the HTML file) from &quot;gethint.asp&quot; to &quot;gethint.php&quot;. <?php // Fill up array with names $a[]=&quot;Anna&quot;; $a[]=&quot;Brittany&quot;; $a[]=&quot;Cinderella&quot;; $a[]=&quot;Diana&quot;; $a[]=&quot;Eva&quot;; $a[]=&quot;Fiona&quot;; $a[]=&quot;Gunda&quot;; $a[]=&quot;Hege&quot;; $a[]=&quot;Inga&quot;; $a[]=&quot;Johanna&quot;; $a[]=&quot;Kitty&quot;; $a[]=&quot;Linda&quot;; $a[]=&quot;Nina&quot;; $a[]=&quot;Ophelia&quot;; $a[]=&quot;Petunia&quot;; $a[]=&quot;Amanda&quot;; $a[]=&quot;Raquel&quot;;
  • 22. $a[]=&quot;Cindy&quot;; $a[]=&quot;Doris&quot;; $a[]=&quot;Eve&quot;; $a[]=&quot;Evita&quot;; $a[]=&quot;Sunniva&quot;; $a[]=&quot;Tove&quot;; $a[]=&quot;Unni&quot;; $a[]=&quot;Violet&quot;; $a[]=&quot;Liza&quot;; $a[]=&quot;Elizabeth&quot;; $a[]=&quot;Ellen&quot;; $a[]=&quot;Wenche&quot;; $a[]=&quot;Vicky&quot;; //get the q parameter from URL $q=$_GET[&quot;q&quot;]; //lookup all hints from array if length of q>0 if (strlen($q) > 0) { $hint=&quot;&quot;; for($i=0; $i<count($a); $i++) { if (strtolower($q)==strtolower(substr($a[$i],0,strlen($q)))) { if ($hint==&quot;&quot;)
  • 23. $hint=$a[$i]; } else { $hint=$hint.&quot; , &quot;.$a[$i]; } } } } // Set output to &quot;no suggestion&quot; if no hint were found // or to the correct values if ($hint == &quot;&quot;) { $response=&quot;no suggestion&quot;; } else { $response=$hint; } //output the response echo $response; ?>
  • 24. AJAX Database Example Example Explained - The showCustomer() Function When a user selects a customer in the dropdown list above, a function called &quot;showCustomer()&quot; is executed. The function is triggered by the &quot;onchange&quot; event: function showCustomer(str) { if (str==&quot;&quot;) { document.getElementById(&quot;txtHint&quot;).innerHTML=&quot;&quot;; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById(&quot;txtHint&quot;).innerHTML=xmlhttp.responseText; } } xmlhttp.open(&quot;GET&quot;,&quot;getcustomer.asp?q=&quot;+str,true); xmlhttp.send();
  • 25. The AJAX Server Page The page on the server called by the JavaScript above is an ASP file called &quot;getcustomer.asp&quot;. The server file could easily be rewritten in PHP, or some other server languages. Look at a corresponding example in PHP. The source code in &quot;getcustomer.asp&quot; runs a query against a database, and returns the result in an HTML table: <% response.expires=-1 sql=&quot;SELECT * FROM CUSTOMERS WHERE CUSTOMERID=&quot; sql=sql & &quot;'&quot; & request.querystring(&quot;q&quot;) & &quot;'&quot; set conn=Server.CreateObject(&quot;ADODB.Connection&quot;) conn.Provider=&quot;Microsoft.Jet.OLEDB.4.0&quot; conn.Open(Server.Mappath(&quot;/db/northwind.mdb&quot;)) set rs=Server.CreateObject(&quot;ADODB.recordset&quot;) rs.Open sql,conn response.write(&quot;<table>&quot;) do until rs.EOF for each x in rs.Fields response.write(&quot;<tr><td><b>&quot; & x.name & &quot;</b></td>&quot;) response.write(&quot;<td>&quot; & x.value & &quot;</td></tr>&quot;) next rs.MoveNext loop response.write(&quot;</table>&quot;) %>
  • 26. AJAX XML Example AJAX can be used for interactive communication with an XML file. The following example will demonstrate how a web page can fetch information from an XML file with AJAX: Example Get CD info Example Explained - The stateChange() Function When a user clicks on the &quot;Get CD info&quot; button above, the loadXMLDoc() function is executed. The loadXMLDoc() function creates an XMLHttpRequest object, adds the function to be executed when the server response is ready, and sends the request off to the server. When the server response is ready, an HTML table is built, nodes (elements) are extracted from the XML file, and it finally updates the txtCDInfo placeholder with the HTML table filled with XML data: