SlideShare a Scribd company logo
Welcome to One & AllG    d DaySeminar on AJAX
AJAX :Asynchronous JavaScript And XML
Back then :Click Search
And you get this :
These days :
The magic spell behind this is :AJAX
So what is Ajax ? A programming language – no…
 A new technology – not exactly…
 So what else ? It is a methodology on using several web technologies together, in an effort to close the gap between the usability and interactivity of a desktop application and the ever demanding web application 
Order of DevelopmentsInternet Explorer introduces the concept of IFrame element in 1996.(a technique that helps in loading the contents of a web page.)In the year 1998, Microsoft introduces another technique, called ‘Microsoft’s Remote Scripting’ as a replacement to the older techniques.
A year later, in 1999, Microsoft introduces the XMLHttpRequest object, an ActiveX control, in IE 5. The term AJAX is coined on February 18, 2005, by Jesse James Garret in a short essay published a few days after Google released its Maps application.
Finally, in the year 2006, the W3C (World Wide Web Consortium) announces the release of the first draft which includes the specification for the object (XHR) and makes it an official web standard.
Why Ajax is important ?AJAX enables a much better user experience for Web sites and  applications.
Developers can now provide user interfaces that are nearly as   responsive and rich as more traditional Windows Forms applications while taking advantage of the Web's innate ease of deployment and heterogeneous, cross-platform nature.
These benefits have been shown to dramatically reduce software maintenance costs and increase its reach. You can use AJAX to load specific portions of  a page that need to be changed.
It further reduces network traffic.The Core Components :HTML & CSS - for presenting.JavaScript - for local processing.Document Object Model (DOM) – to access data inside the page or to access elements of an XML file on the server.XMLHttpRequest object– to read/send data to the server asynchronously.
The process cycle
Ajax ppt - 32 slides
A little about XHR object
Ajax ppt - 32 slides
The readyState values
A few status values
Let’s get to some work 
Example( cont...)
( cont...)
Output page looks like this :
Interactive mouse-overs
Here comes another Ajax example — one that’s a little more impressive visually.When you move the mouse over one of the images on this page, the application fetches text for that mouseover by using Ajax.All you really have to do is to connect the getData function (which fetches text data and displays it in the <div> element whose name you pass) to the ‘onmouseover’ event of each of the images you see in Figure 3-3.
Take a look at this :
    How to do this :
    Here’s the content of sandwiches.txt :     and pizzas.txt :    and soups.txt :
Hm…done with coding 

More Related Content

Ajax ppt - 32 slides

  • 1. Welcome to One & AllG d DaySeminar on AJAX
  • 4. And you get this :
  • 6. The magic spell behind this is :AJAX
  • 7. So what is Ajax ? A programming language – no…
  • 8. A new technology – not exactly…
  • 9. So what else ? It is a methodology on using several web technologies together, in an effort to close the gap between the usability and interactivity of a desktop application and the ever demanding web application 
  • 10. Order of DevelopmentsInternet Explorer introduces the concept of IFrame element in 1996.(a technique that helps in loading the contents of a web page.)In the year 1998, Microsoft introduces another technique, called ‘Microsoft’s Remote Scripting’ as a replacement to the older techniques.
  • 11. A year later, in 1999, Microsoft introduces the XMLHttpRequest object, an ActiveX control, in IE 5. The term AJAX is coined on February 18, 2005, by Jesse James Garret in a short essay published a few days after Google released its Maps application.
  • 12. Finally, in the year 2006, the W3C (World Wide Web Consortium) announces the release of the first draft which includes the specification for the object (XHR) and makes it an official web standard.
  • 13. Why Ajax is important ?AJAX enables a much better user experience for Web sites and applications.
  • 14. Developers can now provide user interfaces that are nearly as responsive and rich as more traditional Windows Forms applications while taking advantage of the Web's innate ease of deployment and heterogeneous, cross-platform nature.
  • 15. These benefits have been shown to dramatically reduce software maintenance costs and increase its reach. You can use AJAX to load specific portions of a page that need to be changed.
  • 16. It further reduces network traffic.The Core Components :HTML & CSS - for presenting.JavaScript - for local processing.Document Object Model (DOM) – to access data inside the page or to access elements of an XML file on the server.XMLHttpRequest object– to read/send data to the server asynchronously.
  • 19. A little about XHR object
  • 22. A few status values
  • 23. Let’s get to some work 
  • 26. Output page looks like this :
  • 28. Here comes another Ajax example — one that’s a little more impressive visually.When you move the mouse over one of the images on this page, the application fetches text for that mouseover by using Ajax.All you really have to do is to connect the getData function (which fetches text data and displays it in the <div> element whose name you pass) to the ‘onmouseover’ event of each of the images you see in Figure 3-3.
  • 29. Take a look at this :
  • 30. How to do this :
  • 31. Here’s the content of sandwiches.txt : and pizzas.txt : and soups.txt :
  • 33.  Benefits of using AjaxHelps to build fast, dynamic websites. Improves sharing of resources : it facilitates to use the power of all the client computers rather than just a unique server and network. Ajax allows to perform processing on client computer (in JavaScript) with data taken from the server thereby reducing server load by moving a part of server functionality to client side. Ajax can selectively modify a part of a page displayed by the browser, and update it without the need to reload the whole document with all images, menus etc. This bridges the gap between desktop and web applications.
  • 34.  A Few DrawbacksIf JavaScript is not activated, Ajax can't works. The user must be asked to set JavaScript from within options of the browser, with the "noscript" tag.Since data to display are loaded dynamically, they are not part of the page, and the keywords inside are not viewed by search engines.The asynchronous mode may change the page with delays (when the processing on the server takes more time), this may be disturbing.The back button may be deactivated.
  • 36. A presentation by SmithBig thanks to “members of slideshare.net and the website crew”Special thanks toM Ramya, MCA IIIrd yr – member of slideshare.net