Got an iPhone or iPad? We have a brand new Pastebin App for both devices, and it's totally free! Click here to download the new Pastebin App for iOS.
Guest

tavares

By: a guest on Jan 31st, 2009  |  syntax: JavaScript  |  size: 0.25 KB  |  hits: 775  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. function GetXMLHttp() {  
  2. if(navigator.appName == "Microsoft Internet Explorer") {  
  3. xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");  
  4. }  
  5. else {  
  6. xmlHttp = new XMLHttpRequest();  
  7. }  
  8. return xmlHttp;  
  9. }  
  10.    
  11. var xmlRequest = GetXMLHttp();