« Previous entry | Next entry » Browse > Snippets
Skip to comments (28)
cross browser XMLHttpRequest
Posted by Erik on Oct 29 2005 @ 20:19 :: 7510 unique visits
With AJAX programming being so populair these days I thought I post this.CODE: JAVASCRIPT
function createXMLHttpRequest() {
var types = [
'Microsoft.XMLHTTP',
'MSXML2.XMLHTTP.5.0',
'MSXML2.XMLHTTP.4.0',
'MSXML2.XMLHTTP.3.0',
'MSXML2.XMLHTTP'
];
for (var i = 0; i < types.length; i++) {
try {
return new ActiveXObject(types[i]);
} catch(e) {}
}
try {
return new XMLHttpRequest();
} catch(e) { }
return false; // XMLHttpRequest not supported
}
var types = [
'Microsoft.XMLHTTP',
'MSXML2.XMLHTTP.5.0',
'MSXML2.XMLHTTP.4.0',
'MSXML2.XMLHTTP.3.0',
'MSXML2.XMLHTTP'
];
for (var i = 0; i < types.length; i++) {
try {
return new ActiveXObject(types[i]);
} catch(e) {}
}
try {
return new XMLHttpRequest();
} catch(e) { }
return false; // XMLHttpRequest not supported
}
Modified the function after guest posting.
You can also use this code to add a XMLHttpRequest to IE so you can just use
new XMLHttpRequest(); as in other browsers.
CODE: JAVASCRIPT
if (!window.XMLHttpRequest) {
window.XMLHttpRequest = function() {
var types = [
'Microsoft.XMLHTTP',
'MSXML2.XMLHTTP.5.0',
'MSXML2.XMLHTTP.4.0',
'MSXML2.XMLHTTP.3.0',
'MSXML2.XMLHTTP'
];
for (var i = 0; i < types.length; i++) {
try {
return new ActiveXObject(types[i]);
} catch(e) {}
}
return false; // XMLHttpRequest not supported
}
}
window.XMLHttpRequest = function() {
var types = [
'Microsoft.XMLHTTP',
'MSXML2.XMLHTTP.5.0',
'MSXML2.XMLHTTP.4.0',
'MSXML2.XMLHTTP.3.0',
'MSXML2.XMLHTTP'
];
for (var i = 0; i < types.length; i++) {
try {
return new ActiveXObject(types[i]);
} catch(e) {}
}
return false; // XMLHttpRequest not supported
}
}
28 comments posted so far
Add your own »
2. On Oct 30 2005 @ 00:03 Erik wrote:
lol, no I can't (this link will). But if you don't know what an XMLHttpRequest does you will probably never need this code.3. On Nov 19 2005 @ 10:51 guest wrote:
I think this version works better and is more stable:CODE: JAVASCRIPT
function createXMLHttpRequest()
{
// Create and initialise the temporary variable
var http_request = false;
// This check is for Mozilla, Safari, Opera,...
if (window.XMLHttpRequest)
{
try
{
http_request = new XMLHttpRequest();
if (http_request.overrideMimeType)
{
http_request.overrideMimeType('text/xml');
}
}
catch (e)
{
http_request = false;
}
}
// For Internet Explorer
else
{
try
{
http_request = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
try
{
http_request = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e)
{
http_request = false;
}
}
}
return (http_request != null && http_request != false) ? http_request : false;
}
{
// Create and initialise the temporary variable
var http_request = false;
// This check is for Mozilla, Safari, Opera,...
if (window.XMLHttpRequest)
{
try
{
http_request = new XMLHttpRequest();
if (http_request.overrideMimeType)
{
http_request.overrideMimeType('text/xml');
}
}
catch (e)
{
http_request = false;
}
}
// For Internet Explorer
else
{
try
{
http_request = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
try
{
http_request = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e)
{
http_request = false;
}
}
}
return (http_request != null && http_request != false) ? http_request : false;
}
4. On Nov 21 2005 @ 16:56 guest wrote:
hehe, the function in the startpost will also work correctly and maybe better, because return wil exit the function after it's called, so he won't reach te next line. ;)5. On Dec 13 2005 @ 17:36 guest wrote:
I think this a better one:CODE: JAVASCRIPT
if (!window.XMLHttpRequest)
{
window.XMLHttpRequest = function()
{
var types = [
'Microsoft.XMLHTTP',
'MSXML2.XMLHTTP.5.0',
'MSXML2.XMLHTTP.4.0',
'MSXML2.XMLHTTP.3.0',
'MSXML2.XMLHTTP'
];
for (var i = 0; i < types.length; i++)
{
try
{
return new ActiveXObject(types[i]);
}
catch(e) {}
}
return undefined;
}
}
{
window.XMLHttpRequest = function()
{
var types = [
'Microsoft.XMLHTTP',
'MSXML2.XMLHTTP.5.0',
'MSXML2.XMLHTTP.4.0',
'MSXML2.XMLHTTP.3.0',
'MSXML2.XMLHTTP'
];
for (var i = 0; i < types.length; i++)
{
try
{
return new ActiveXObject(types[i]);
}
catch(e) {}
}
return undefined;
}
}
6. On Dec 14 2005 @ 18:40 Erik wrote:
Looks interresting. I will do some tests with this and then probably modify the code I submitted.7. On Dec 14 2005 @ 23:09 Erik wrote:
Found some problems today. When XMLHttpRequest is not supported createXMLHttpRequest returns null. But when you compare the result to null you will get an error in IE (not in firefox).CODE: JAVASCRIPT
var req = createXMLHttpRequest();
if (req == null) { // error here
...
if (req == null) { // error here
...
I have fixed this by letting the function return false and doing the check like this:
CODE: JAVASCRIPT
var req = createXMLHttpRequest();
if (typeof req == 'boolean') { // error here
...
if (typeof req == 'boolean') { // error here
...
8. On Apr 30 2008 @ 04:42 dfg wrote:
dfgdfgdfgdfg9. On May 17 2008 @ 17:38 dfg wrote:
dfgdfg10. On Aug 27 2008 @ 04:54 guest wrote:
Top 10 best gambling roulette gambling casinos based on micro gaming platform.Best online black jack gambling casinos, play to win and enjoy your online
internet blackjack experience.
Learn how to play video poker and experience the thrill of gambling and beating online casinos.
Use a free poker reviews to calculate your winning poker odds.
Learn the art of horse racing system and play to win your punts at the races.
Dont buy movies, get downloadable movies movies and watch them for free.
Earn money and work from home, with forex trading system, trade the forex market.
Get all sorts of iphone games for your new iphone mobile telephone.
11. On Nov 13 2008 @ 09:09 guest wrote:
adkfjakldf12. On Jan 10 2009 @ 09:11 battery wrote:
http://www.batteryfast.com/http://www.batteryfast.co.uk/
13. On Feb 05 2009 @ 02:43 nfl4sale wrote:
Rolex WatchesWatch Boxes
Alain Silberstein
Anonimo
A.Lange & Sohne
Audemars Piguet
Baume & Mercier
Bell & Ross
Blancpain
Breguet
Breitling
Burberry
Bvlgari
Cartier
Chanel
Chopard
Christian Dior
Chrconoswiss
Corum
Dewitt
Ebel
Fendi
Frank Muller
Gerald Genta
Glashutte
Graham
Gucci
Hermes
Hublot
Iwc
Jacob & Co
Jaeger Le Coultre
Longines
Louis Vuitton
Maurice & Lacroix
Mont Blanc
Movado
Oris
Panerai
Parmigiani Fleurier
Patek Philippe
Paul Picot
Piaget
Porsche Desing
Prada
Rado
Roger Dubuis
Rolex
Tag Heuer
Technomarine
Vach. Constantine
Versace
Zenith
Chronomatic
Montbrilliant
Superocean
14. On Mar 09 2009 @ 13:33 guest wrote:
サイト制作秋葉原 メイド
ペット火葬 つくば
つくば ペット火葬
つくば ペット霊園
つくば ペット葬儀
立食パーティー用プレート
でしこ
soul source production
ベトナム シーフード
高収入 アルバイト
高収入 アルバイト
アパレル 求人
アパレル 派遣
人妻 出会い
風俗
風俗
デリヘル
アダルトゲーム
高収入求人
高収入求人
ソープランド
性感マッサージ 名古屋
M性感 名古屋
出会い
15. On Mar 11 2009 @ 12:56 guest wrote:
<a href="http://www.ssportss.net/">消費者金融</a><a href="http://www.ozone.ne.jp/">FX 比較</a>
<a href="http://www.burmedia.org/">レーシック 費用</a>
<a href="http://kanagawa-lasik.fvoc.gr.jp/">神奈川クリニック眼科</a>
<a href="http://www.zone-noa.com/">フォーランドフォレックス</a>
<a href="http://kaitori.intersky.ne.jp/">バイク王</a>
16. On Mar 11 2009 @ 12:57 guest wrote:
消費者金融FX 比較
レーシック 費用
神奈川クリニック眼科
フォーランドフォレックス
バイク王
17. On Mar 15 2009 @ 15:59 guest wrote:
Our wholesale replica handbags is one of the best Replica Purses wholesaler.we are selling Louis vuitton replica ,Chanel Replica ,Gucci Replica ,The handbags are Hermes Birkin ,Hermes Kelly ,Chanel 2.55 bag ,Louis vuitton replica Speedy 30 ,Louis vuitton Damier Canvas ,and we selling high and top Chanel wallet ,Louis Vuitton wallet ,Hermes belt . Choosing Replica handbags to perfect your lifestyle: Business Opportunities.Jadeshow’s replica Tiffany Jewelry and Replica Bvlgari Jewelery looks just like the real thing. Why pay more for a single piece of Tiffany Replica jewelry,Bvlgari Replica Jewelry when you can treat yourself to a number of replica pieces for the same price or less? Be simply spectacular with contemporary Tiffany-inspired jewelry!Jadwshow delights in the opportunity to offer our customers fine Tiffany Bracelets , Tiffany Necklaces , Tiffany Earrings , Tiffany Rings , Tiffany Bangles ,Gucci jewelry replica , Chanel wallet and Louis Vuitton wallet
all at remarkably low prices.
We are top designer wholesale Replica handbags ,Louis vuitton replica ,replica jewelry ,Bvlgari Replica ,Gucci Replica jewelry ,Swarovski Crystal , We offer a wide variety of high quality Tiffany inspired jewelry at very low prices. Gucci Necklaces ,Gucci Bracelets , Gucci rings , Gucci Earrings , Links Jewelry ,Chanel Rings and Tiffany replica , Cartier Jewelry more. Free shipping with any purchase over 5 items.Replica Louis Vuitton chanel replica handbag
We are the best and top Replica handbag ,replica bags ,Replica watches wholesaler in china,Our products is Replica louis vuitton handbags ,Chanel replica handbags ,Gucci replica handbags ,Miu Miu handbag and we are selling Replica wallet ,best Louis Vuitton wallet ,Chanel wallet replica,and sell Rolex replica watches ,Omega replica watches .Hermes replica bag
18. On Mar 16 2009 @ 11:10 guest wrote:
When XMLHttpRequest is not supported createXMLHttpRequest returns null. But when you compare the result to null you will get an error in IE.tower defence
19. On Apr 15 2009 @ 08:24 guest wrote:
I am searching about iCal today as I reached on your site and found it so informative because you posted perfectly about ical Applescript version 2. Well, want to right more but at this time on travelI went by cheap flights and you can fine me on here apartments. Your post is really lovable. Thanks20. On Apr 15 2009 @ 09:22 Steve wrote:
I see the function and it work well i would add it to my work after my 70-290 managing and maintaining a Microsoft windows server 2003 environment exam about which i am confident to pas in first attempt as i have already pass my 70-640 windows server 2008 active directory exam with high score along with the 70-649 Upgrading MCSE on wndws serv 2003 to wndws serv 2008 exam in first attempt due to highly prepared and with 100% guarantee to pass material as i will be free from all this i must return on your page as you have done a great job and this code cold do more with little changes.22. On May 11 2009 @ 04:30 guest wrote:
ルイボスティー 効果フラッシュ脱毛 口コミ
イオンパック エルセーヌ
Vライン脱毛 口コミ
ひまわり証券 FXスリムセラ 口コミ
プラチナゲルマローラー 口コミ
大豆気分 豆乳クッキー 激安
セントラル短資
EMCOM TRADE エムコムトレード
クラリスフラッシュ
外為どっとコム
審査 甘い ブラック キャッシング
審査 ゆるい 消費者金融
光電話 料金
PASMO オートチャージ
FXブロードネット
マネーパートナーズ
電子タバコ taeco(タエコ)
ナノコラーゲン
スタイルクルーズ
住宅ローン 金利
神奈川クリニック眼科
品川 レーシック
シティカード
リーブ21
プロアクティブ
ウォーターサーバー
セントラル短資
FXプライム
外為オンライン
ビザカード
FXブロードネット
マネックスFX
アットローン
23. On May 11 2009 @ 11:41 guest wrote:
QIXINYANWay to teach a dog infected with love and enjoyment of the people around them is dog training. Not all the people who keep the dog know how to train a puppy, but who often find it impossible to carry out dog obedience training , people who have a different feel that they do so. Although some people will tend to the field of veterinary medicine, other people will choose more specific career dog. Perhaps the most popular dog-centric professional area is that dog training.
Police dog training is a great way for those who love the dogs, to help them use and dissemination of information. One important thing to remember is that the dog trainer can not only teach dog tricks and working dogs and their masters. In fact, owners tend to play a bigger roll than the dogs training process.
Some people choose to learn some dog training tips from an experienced coach or a veterinary surgeon of similar projects in the apprenticeship. This is often useful, because many of these puppies training experience in the field and constant practice. Customers will often choose a coach approved no more than one certification. Other routes may be the next dog learning how to train a puppy through the animal science program behavior.
Do you know how to lose weight? No matter how you do, do not skip breakfast. People who began the day a good healthy breakfast does not have loss weight diet throughout the day than those who do not eat breakfast. Or, if you prefer to drink your breakfast to reach weight loss, fruit juice is a good choice. All you need to do is the integration and go! Super simple!
In addition, how to lose pounds? Plan your meals so you eat every 3-4 hours, about 5-6 times a day. Do you want to ensure that your last meal is 3-4 hours, and then go to bed. It seems to eat more frequently in the first strange, but studies ways to lose weight by the books and internet, you’ll not only lose pounds success, but also have the energy level of the day.
Are you annoying with belly fat? I am sure you hear that sit-ups are one of the best belly fat exercises. How to lose belly fat? There are not only belly fat exercises, but have belly fat diet. Although it is entirely correct sit-ups will strengthen the abdominal muscles and make you more powerful in this regard, you may get rid of belly fat because you’re fat to improve the muscle to hold better, which in fact did not lose belly fat itself.
The key to lose belly fat is actually quite simple. Therefore, these two key points, first of all to take action to belly fat exercises, second, have belly fat diet every day. Do these, you will lose belly fat!
As a child, you can find kids jobs to get money. If not, maybe you are considering how to make children work in additional funds. jobs for 15 year olds are so many. However, we know that you will not find a real job; you just need a working pocket money. Finding jobs for 16 year olds is not a difficult task.
To make money online, first you need to make necessary preparations. In any field or industry you need in all walks of life through appropriate channels to meet their own, in order to succeed. Can you imagine how to starting your own business? It would be a good way to Make Money on the Internet and move forward at full speed is going to just be disastrous.
In the network marketing, you can set up shop online, start flower shop, or you can start carpet cleaning business.In my opinion, there are also other popular ways to make money,for instance, So starting a laundromat business at home, another way is to manage furniture making business at home.
24. On May 30 2009 @ 00:39 guest wrote:
<a href="http://www.furin-deai.net/">不倫</a><a href="http://www.jitsuroku.net/">セフレ</a>
<a href="http://brandnavi.biz/">メル友</a>
<a href="http://okusama69.blog22.fc2.com/">エッチな奥様</a>
<a href="http://amamovie.blog11.fc2.com/">エッチな素人</a>
<a href="http://masapi.cocolog-nifty.com/">セフレ</a>
<a href="http://byebyesefure.jugem.jp/">セフレ</a>
<a href="http://sefure-sefure.jugem.jp/">セフレ</a>
<a href="http://costume.blog10.fc2.com/">セフレ</a>
<a href="http://chatgirl69.blog23.fc2.com/">セフレ</a>
<a href="http://hamex2.blog10.fc2.com/">セフレ</a>
<a href="http://masapi.cocolog-nifty.com/">セフレ</a>
<a href="http://byebyesefure.jugem.jp/">セフレ</a>
<a href="http://hamoblo.com/sefurebosyu/">セフレ</a>
<a href="http://sefurebosyu.kitaguni.tv/">セフレ</a>
<a href="http://sefurebosyu.blog.shinobi.jp/">セフレ</a>
<a href="http://blog.goo.ne.jp/manaka_toshi/">不倫</a>
<a href="http://furinpartner.at.webry.info/">不倫パートナー</a>
<a href="http://www.cafeblo.com/furindeai/">不倫パートナー</a>
<a href="http://furinpartner.fruitblog.net">不倫パートナー</a>
<a href="http://yaplog.jp/furin-partner/">不倫パートナー</a>
<a href="http://furindeai.blog.drecom.jp/">不倫パートナー</a>
<a href="http://blogs.yahoo.co.jp/yakuyokedaishi_hehe/">メル友</a>
<a href="http://plaza.rakuten.co.jp/mailtomo">メル友</a>
<a href="http://d.hatena.ne.jp/mailfriends/">メル友</a>
<a href="http://deaielog.blog13.fc2.com/">出会い系</a>
<a href="http://kinshi-kyousei.seesaa.net/">近視矯正</a>
<a href="http://web3776.net/">富士登山</a>
<a href="http://blog.goo.ne.jp/fujitozan_aug/">富士登山</a>
<a href="http://www.fujisan-yamaguchiya.com/">富士山 登山</a>
<a href="http://yuuko69.blog70.fc2.com/">AV女優</a>
<a href="http://kiraraasuka.blog47.fc2.com/">明日花キララ</a>
<a href="http://hatsuneminorimuscut.blog72.fc2.com/">初音みのり</a>
<a href="http://nadasakamai.blog58.fc2.com/">灘坂舞</a>
<a href="http://takeuchiai99.blog46.fc2.com/">竹内あい</a>
<a href="http://btono.dtiblog.com/">桜井梨花</a>
<a href="http://xni8s954elnf7jq.blog19.fc2.com/">立花里子</a>
25. On Jun 09 2009 @ 09:11 guest wrote:
DVD Audio RipperFree DVD Audio Ripper
DVD Audio Ripper for Mac
DVD to MP4 Converter
DVD to MP4 Converter for Mac
DVD to iPod Converter
free DVD to iPod Converter
DVD to iPod Converter for Mac
DVD Ripper
Diablo 2 CD Key
Diablo 2 CD Keys
Free DVD Ripper
DVD Ripper for Mac
NFL Jerseys
Scoccer Jerseys
Hockey Jerseys
MLB Jerseys
NHL Jerseys
26. On Jun 11 2009 @ 21:26 guest wrote:
buy wow goldStarcraft 2
Diablo 3
Modern Warfare 2
God of War 3
Left 4 Dead 2
Sims 3 Downloads
Left 4 Dead 2 Release Date
God of War 3 Release Date
Assassins Creed 2 Gameplay Demo Trailer
27. On Jun 17 2009 @ 11:26 guest wrote:
jobs for 14 year oldsjobs for 14 year olds
jobs for 14 year olds
jobs for 14 year olds
jobs for 14 year olds
jobs for 14 year olds
jobs for 14 year olds
jobs for 14 year olds
jobs for 14 year olds
Saraideas's Blog
Sara ideas
saraideas
saraideas
saraideas
saraideas
saraideas
saraideas
saraideas
Sara's Blog
sara's Site
Saraideas
saraideas
28. On Jun 19 2009 @ 09:47 Briace wrote:
wholesale jewelryjewelry wholesale
fashion jewelry
handmade jewelry
costume jewelry
wholesale costume jewelry
wholesale fashion jewelry
wholesale pearl
wholesale crystal
discount jewelry
1. On Oct 29 2005 @ 21:17 Bhav wrote:
um could you explain what that means/does for us n00bs? ;)