Results 1 to 2 of 2

Thread: What is AJAX?

  1. #1
    WilsonMartin is offline Senior Member
    Join Date
    Dec 2009
    Posts
    319
    Rep Power
    3

    Default What is AJAX?

    I am new in development world. Right now I have little bit knowledge of web development world. I want to know about what is AJAX and its feature. If you are having any information then reply me. It can helpful to me. Thanks in advanced.

  2. #2
    AndersonDiaz is offline Senior Member
    Join Date
    Dec 2009
    Posts
    311
    Rep Power
    3

    Default

    Ajax stands for Asynchronous JavaScript and Xml. AJAX is a combination of different technologies put together to build the next generation of web applications, which are more responsive, more interactive and behave like their desktop counterparts.

    AJAX features

    • Asynchronous loading of content without page refresh

    • Increased interactivity and responsiveness

    • Reduced loading time and server traffic

    Example:

    The AJAX application above contains one div section and one button.

    The div section will be second-hand to display in progression returned from a server.

    The key calls a function named loadXMLDoc(), if it is clicked:

    Code:
    <html>
    <body>
    
    <div id="myDiv"><h2>Let AJAX change this text</h2></div>
    <button type="button" onclick="XMLDoc()">Click Me</button>
    
    </body>
    </html>
    Next, add a <script> tag to the page's head section. The script section contains the XMLDoc() function:

    Code:
    <head>
    <script type="text/javascript">
    function XMLDoc()
    {
    .... content
    }
    </script>
    </head>

Similar Threads

  1. Ajax Vs JavaScript
    By Lucius Silvester in forum Programming
    Replies: 1
    Last Post: 11-08-2010, 04:10 PM
  2. Ajax Vs JavaScript
    By alicia carpenters in forum Programming
    Replies: 1
    Last Post: 07-04-2010, 06:09 AM
  3. How to put together AJAX Poll in PHP?
    By MyersGray in forum General Software Terms
    Replies: 1
    Last Post: 06-23-2010, 02:35 PM
  4. What is Ajax .Net?
    By WalkerCook in forum Programming
    Replies: 1
    Last Post: 02-08-2010, 04:02 PM
  5. Ajax Windows
    By Jahmar Anglian in forum Applications
    Replies: 0
    Last Post: 07-29-2009, 09:38 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48