Ajax techniques demonstration on Tom Riddle's Dairy As seen in 'Harry Potter and the Chamber of Secrets
Related Posts by Categories
ajax video tutorials
- Creating an Ajax-driven Drop-down Menu System - 40
- Communicating With the Shopping Cart on the Server - 39
- Handling Drops - Ajax Tutorial 38
- Enabling Dragging Using Ajax | Ajax Tutorial 37
- Handling Mouse Events - Ajax Tutorial 36
- Creating a Shopping Cart - Buy item by dragging it to the shopping cart
- Downloading Images Using Ajax - Ajax Tutorial 34
- Returning JavaScript Objects From the Server AjaxTutorial 33
- Handling Multiple XMLHttpRequest Requests - Ajax Power - 32
- Using Two XMLHttpRequest objects - Ajax tutorial - 31
- Calling a Different Domain Safely - Getting Ajax Power - 30
- Connecting to Google Suggest - Live Google Search - Ajax Training 29
- Creating a Live Search Part.2 - 28 Using Live Google Search
- Creating a Live Search Part.1 - Live Search using Google
- Handling Head Requests for More Data - Ajax training 26
- Determining Which Browser the User Has - Ajax training 25
- Passing Data to the Server with POST - Ajax Training - 24
- Passing Data to the Server with GET - AJAX TUTORIAL - 23
- Extracting Data From XML - ajaxtraining.blogspot.com - 22
- Fetching XML Data From the Server - Ajax Training - 21
- Storing Ajax Data in XML - Ajaxtraining.blogspot.com - 20
- Using Server-Side Scripting - Ajaxtraining.blogspot.com -19
- Getting XMLHttpRequest Objects in Other Ways Ajaxtutorial 18
- Selecting Relative or Absolute URLs - Ajax tutorial - 17
- Decoding the Fetched Data - Ajax Tutorial - 16
Getting to know Ajax
9 comments:
Is AJAX code cross browser compatible?
Not totally. Most browsers offer a native XMLHttpRequest JavaScript object, while another one (Internet Explorer) require you to get it as an ActiveX object....
Techniques for asynchronous server communication have been around for years. What makes Ajax a “new” approach?
What’s new is the prominent use of these techniques in real-world applications to change the fundamental interaction model of the Web. Ajax is taking hold now because these technologies and the industry’s understanding of how to deploy them most effectively have taken time to develop.
Is Ajax a technology platform or is it an architectural style?
It’s both. Ajax is a set of technologies being used together in a particular way.
What kinds of applications is Ajax best suited for?
If you worked on web applications, whenever a user interacted with a page, and it has to process it, the page refreshes. This refresh is called a postback. The odd thing is that, the entire page did not need to be refreshed. Instead only part or certain elements of a page, can be refreshed , but aynschronously. So if you look at an AJAXified Web Application, you will notice that it is very similar to a desktop application.
So AJAX allows the developers to build web applications and give the user an experience of desktop applications. Such application are called as Rich Internet Applications (RIA).
Could you show some actual server side and Ajax code?
Post a Comment