Share Pastebin
Guest
Public paste!

tavares

By: a guest | Jan 31st, 2009 | Syntax: JavaScript | Size: 0.25 KB | Hits: 700 | Expires: Never
Copy text to clipboard
  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();