Guest User

Untitled

a guest
Jun 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. var xmlHttp = false;
  2. /*@cc_on @*/
  3. /*@if (@_jscript_version >= 5)
  4. try {
  5. xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
  6. } catch (e) {
  7. try {
  8. xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
  9. } catch (e2) {
  10. xmlHttp = false;
  11. }
  12. }
  13. @end @*/
  14.  
  15. if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
  16. xmlHttp = new XMLHttpRequest();
  17. }
Add Comment
Please, Sign In to add comment