I have made an AJAX chatroom; and it works in chrome and FF, but of course, not in IE. Here's my code:

<script language="javascript" type="text/javascript">
<!-- 
//Browser Support Code
function ajaxFunction(){
    var ajaxRequest; 
    try {
      ajaxRequest = new XMLHttpRequest();
    } catch (e) {
      try {
        ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
      } catch (e) {
         try {
           ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
         } catch (e){
           alert("Your browser broke!");
           return false;
     }
  }
    }

    ajaxRequest.onreadystatechange = function(){
      if(ajaxRequest.readyState == 4) {
        var ajaxDisplay = document.getElementById('ajaxDiv');
        ajaxDisplay.innerHTML = ajaxRequest.responseText;
      }
    }

    ajaxRequest.open("GET", "pull.php", true);
    ajaxRequest.send(null);  
}

setInterval( "ajaxFunction()", 1000 );

//-->
</script>

The result never displays. I have a div named AjaxDiv if that helps anyone. What am I doing wrong? Is this a bug?

link|improve this question

4  
Or you could use jquery/mootools, which'd reduce all that to about 2 lines. Rolling your own ajax handlers these days is too painful. – Marc B May 13 '11 at 19:19
ive considered that option, but im more concerned if microsoft made a bug in such a widely-used product – Ken May 13 '11 at 19:21
5  
1  
@Ken Can you provide a full working example? I copied your code and it works fine in IE9 (Windows7 x86): phihag.de/2011/so/ie9-ajax.html . And IE8 had quite a share of bugs, you may inadvertently send buggy IE8 code to IE9 too. – phihag May 13 '11 at 19:30
1  
Post an example to jsfiddle.net jsfiddle is your friend – user120242 May 13 '11 at 19:32
show 5 more comments
feedback

2 Answers

up vote 3 down vote accepted

Probably yanking out a cached copy every time you make a request.

Either set the correct caching headers on the server

header( 'Cache-Control: no-store, no-cache, must-revalidate' );
header( 'Pragma: no-cache' ); 

Or append a query string to the get request like the following

ajaxRequest.open("GET", "pull.php?ts=" + new Date().getTime(), true);
link|improve this answer
Forgot to accept. Sorry. GREAT ANSWER THO! – Ken Jun 24 '11 at 3:39
Thanks for this. Adding the headers to my script worked a treat. Still an annoying feature of IE9 though! – Rohaq Jan 20 at 15:27
feedback

well you could also do ith in 1 line with jquerys .load function =)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.