AJAX Home
TutorialsReusing XMLHttpRequest Object in IE
Author: techno |
Published: 11th Nov 2006 |
Visited: 1289 times |
Add CommentFiled in: TutorialsI came across an article posted by Eric (Coauthor of Ajax In Action) which talks about reusing XMLHttpRequest object. I read many blogs and message boards where similar kind of problem was faced by many users. But frankly speaking I never faced this problem before, except in the example given by Eric in his blog. That made me think why I am able to reuse the same XMLHttpRequest object while others not. So, I decided to write this short article on reusing XMLHttpRequest object in IE.
Read Article Sponsored Links
Related Articles
• Speeding Up Object Instantiation Object instantiation is important for Ajax since it increases the loading time of its functions. Developers have to work with objects most of the time since the objects should be able to determine the behavior of the functions as well as its performance.
However, the number of objects in an Ajax a ...
• Misusing XMLHttpRequest in a Website One of the best features of Ajax is the function XMLHTTPRequest. This function practically suggests the user’s ability to asynchronously receive information from the server. Although it is still possible for web developers to build an Ajax based application without using XMLHTTPRequest, this f ...
• XMLHttpRequest Properties
In developing Ajax, one of the most common codes you’ll be using is the XMLHttpRequest. Getting things done in Ajax without using this type of code is really impossible. This code represents the communication between program and the server. Even though users don’t see the literal interaction betwe ...
• Detecting Object Problems A very smart practice in coding is to test if the function will have the ability to perform in a particular browser. This is especially true in Ajax-based websites as developers have to face constant browser incompatibilities. Objects could easily be a problem when everything is in place for a parti ...
• Overdoing XMLHttpRequest Undoubtedly, XMLHttpRequest is the most important function in Ajax. With this function, developers could easily transfer XML files from the client to server. XMLHttpRequest can single-handedly transform your application from a simple website to an Ajax based website. Its asynchronous function makes ...
• Preventing XMLHttpRequest Harmful Effects One of Ajax’s most important code functions is the XMLHttpRequest. Without this code, it’s almost impossible for an Ajax based program to run smoothly. Although we can find alternate coding for XMLHttpRequest, this code alone could save us hours of coding when we do it the other way. XML ...
• Java object serialization for Ajax If you're doing Java™ Web development using Asynchronous JavaScript and
XML (Ajax), then delivering data from the server to the client is
probably your top concern. In this second article in the Ajax for Java developers
series, Philip McCarthy
walks you through five approaches to Java objec ...
• The XMLHttpRequest Reuse Dilemma One thing I see popping up over message boards is people want to reuse the XMLHttpRequest Object instead of creating a new instance every single time. Some developers think this will help in memory leaks. I have not tested it in any way to see if it really helps. But I thought that I would show you ...
• Tips & Tricks: AJAX – Not Just Limited to XMLHttpRequest This tutorial starts with an Introduction followed by a short discussion on AJAX merits and demerits. The following section is about Implementation, where most of issues concerned have been handled. It's followed by a complete running example code, which can be simply taken and run on local ser ...
• Dynamic HTML and XML : The XMLHttpRequest object As deployment of XML data and web services becomes more widespread, you may occasionally find it convenient to connect an HTML presentation directly to XML data for interim updates without reloading the p ...