Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Coding Forum


You are currently viewing our Coding Forum as a guest. Please register to participate.
Login



Reply
AJAX xhr.open doesn't work in ie7?
Old 10-22-2010, 12:52 PM AJAX xhr.open doesn't work in ie7?
The_Anomaly's Avatar
Extreme Talker

Posts: 216
Location: Boston, Ma
Trades: 0
Has anyone run into this before? Its getting into the is statement, but after that it doesn't execute the page. Works fine in FF and IE8.

Code:
    function openQuickWindow(linkHref){
      
      var url = "writeFile.cfm?writeUrl=" + linkHref;
      
    	if (window.XMLHttpRequest) {
    		xhr = new XMLHttpRequest();
    	}
    	else {
    		if (window.ActiveXObject) {
    			try {
    				xhr = new ActiveXObject("Microsoft.XMLHTTP");
    			}
    			catch (e) { }
    		}
    	}
    
    
    	if (xhr) {
    		alert("its here");
    		xhr.open("GET", url, true);
    		xhr.send(null);
    	}
    	else {
    		alert("Error");
    	}
    	return false;

      //window.open("writeFile.cfm?writeUrl=" + linkHref)
    }
The_Anomaly is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 10-22-2010, 01:05 PM Re: AJAX xhr.open doesn't work in ie7?
The_Anomaly's Avatar
Extreme Talker

Posts: 216
Location: Boston, Ma
Trades: 0
Well it looks like using MSXML2.XMLHTTP.3.0 instead of Microsoft.XMLHTTP makes it work in all IE's.
The_Anomaly is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to AJAX xhr.open doesn't work in ie7?
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.13102 seconds with 12 queries