IE XMLHttpRequest object


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. if(!window.XMLHttpRequest){
  2. if(window.ActiveXObject){
  3. XMLHttpRequest=function(){return new ActiveXObject("Microsoft.XMLHTTP");};
  4. window.XMLHttpRequest=XMLHttpRequest;
  5. }
  6. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.