How to Program in Ajax

AJAX or Ajax is Asynchronous JavaScript and XML. It is used for exchanging data with a server and updating a portion of a webpage without reloading the whole webpage on the client side. The display and behavior of the existing webpage...
Method 1 of 2:

Coding

  1. How to Program in Ajax Picture 1How to Program in Ajax Picture 1
    Prepare a picture for writing an Ajax program. Save the picture in the same folder where you will save your html and text files displaying the Ajax program. In this article, 'ProgramInAjax' directory is set up inside the 'wamp' folder under the 'www' directory where you installed WampServer.
  2. How to Program in Ajax Picture 2How to Program in Ajax Picture 2
    Open any text editor. Notepad++ is used as the text editor in this article.
  3. How to Program in Ajax Picture 3How to Program in Ajax Picture 3
    Create a new file in the text editor. Type the following:

    Oh oh! Where did the yellow flower go?

    You may type whatever you want inside the html tag

     

    here.
  4. How to Program in Ajax Picture 4How to Program in Ajax Picture 4
    Save the file as a text document with the name of 'ajax-data.txt.' Actually, you can name the file whatever you want but make sure you enter the same file name to the coding in this line:
     xmlhttp.open("GET","ajax-data.txt",true);
    However, the HTML tag

     

    is used for the header so that it looks bigger and more invisible.
  5. How to Program in Ajax Picture 5How to Program in Ajax Picture 5
    Create a new file for a webpage. This file is for an HTML file to view the Ajax program in a Web browser.
  6. How to Program in Ajax Picture 6How to Program in Ajax Picture 6
    Copy the following code:
     <html> <head> <title>My First Ajax Program by Metitle>  <script> function loadXMLDoc() { var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp = new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { document.getElementById("myImage").innerHTML = xmlhttp.responseText; } } xmlhttp.open("GET","ajax-data.txt",true); xmlhttp.send(); } script> head> <body style="text-align: center;">  <div id="myImage"> <h2>Click the button below to make the flower disappear.h2> <img src="MyPicture.png" width="500px" height="300px" title="Yellow Flower" alt="an image of a yellow flower"/> div> <br/>  <button type="button" onclick="loadXMLDoc()">Click here to make the picture disappear!button> body> html> 
  7. How to Program in Ajax Picture 7How to Program in Ajax Picture 7
    Save the file. Click the save button on the menu bar. A 'Save As' box is open. Enter a name for your document. In this article, the name of the file is 'index.'
  8. How to Program in Ajax Picture 8How to Program in Ajax Picture 8
    Click the drop down arrow to choose the file extension. At the 'Save as type' field, click the drop down arrow to choose the file extension.
  9. How to Program in Ajax Picture 9How to Program in Ajax Picture 9
    Select 'Hyper Text Markup Language file.' Make sure that it has 'html' inside the parenthesis. Click save after selecting the 'html.'
  10. How to Program in Ajax Picture 10How to Program in Ajax Picture 10
    Test the HTML file in a Web browser. Open the webpage in a web browser. Go to 'Run' on the top menu bar. Click it and select 'Launch in Chrome' or any browser being installed in your system. Google Chrome is used for the testing in this article. You may have some other browsers installed within Notepad++. You can select your favorite browser. Another option, you can click the WampServer icon at the taskbars at the bottom of the screen and select 'Localhost.' You should see your directory there and click the index file.
  11. Click the button below the picture to test the script.
  12. How to Program in Ajax Picture 11How to Program in Ajax Picture 11
    Your final webpage. Your webpage should be refreshed with the information that you entered into the text file at the beginning. The flower and the header should be replaced with the new header called 'Oh oh! Where did the yellow flower go?'
Method 2 of 2:

Code Explanation

  1. How to Program in Ajax Picture 12How to Program in Ajax Picture 12
    The body section. The body of HTML has the 'div' section and one button. This section will be used to display the information returned from the server. The button calls a function named 'loadXMLDoc(),' if it is clicked.
    DOCTYPE html> <html> <head> <title>My First Ajax Program by Me</title> </head> <body style="text-align: center;">  <div id="myImage"> <h2>Click the button below to make the flower disappear.</h2> <img src="MyPicture.png" width="500px" height="300px" title="Yellow Flower" alt="an image of a yellow flower"/> </div> <br/>  <button type="button" onclick="loadXMLDoc()">Click here to make the picture disappear!</button> </body> </html> 
  2. How to Program in Ajax Picture 13How to Program in Ajax Picture 13
    The head section. The head section of the HTML file has a script tag which contains the 'loadXMLDoc()' function.
    <head> <title>My First Ajax Program by Me</title>  <script> function loadXMLDoc() { var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp = new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { document.getElementById("myImage").innerHTML = xmlhttp.responseText; } } xmlhttp.open("GET","ajax-data.txt",true); xmlhttp.send(); } </script> </head> 
  3. More Explanation. The most important thing of Ajax is the XMLHttpRequest object. It is used to exchange data with the server and all modern browsers support the object.
    1. The syntax to create an XMLHttpRequest() object is variable=new XMLHttpRequest(); but at the same time the syntax to create old versions of Internet Explorer (IE5 and IE6) that uses an ActiveX object is variable=new ActiveXObject("Microsoft.XMLHTTP");.
    2. In order to handle all the modern browsers, it needs to check if the browsers support the XMLHttpRequest object. If it does, it creates an XMLHttpRequest object. If one does not, it will create an ActiveX object for it.
    3. Then it will send a request to the server. The method of the XMLHttpRequest object called 'open()' and 'send()' will be used. xmlhttp.open("GET","ajax_info.txt",true); xmlhttp.send();.
4 ★ | 1 Vote