up vote 4 down vote favorite
4
share [g+] share [fb]

I'm looking for an AJAX function to dynamically request an HTML page. I already found the following:

function ajaxinclude(url) 
{
   var page_request = false

   if (window.XMLHttpRequest) // if Mozilla, Safari etc
      page_request = new XMLHttpRequest()
   else if (window.ActiveXObject) // if IE
   { 

     try {
       page_request = new ActiveXObject("Msxml2.XMLHTTP")
     } 
     catch (e){
       try{
         page_request = new ActiveXObject("Microsoft.XMLHTTP")
       }
       catch (e){}
     }
   }
   else
     return false

   page_request.open('GET', url, false) //get page synchronously 
   page_request.send(null)
   return page_request.responseText;
 }

It works fine in Firefox and Chrome, but it fails in IE on the following line:

page_request.open('GET', url, false)

Is there a better available function that is guaranteed to be completely cross browser compatible?

Edit: Thanks for all the great suggestions... in the end, I decided not to reinvent the wheel here. And one of the things I forgot to mention was that I also need it to update at an interval... though I had already figure that out so I didn't think it made a difference. But then I found the great Ajax.PeriodicUpdater() Method in prototype and vastly changed my mind. I just went from a 50 LOC solution to about 4 lines :)

link|improve this question

73% accept rate
1  
Cross-browser anything is tricky. Use a Javascript framework like jQuery. It only has a 30k footprint and will solve this and so many other problems for you. – cletus Jan 11 '09 at 2:03
Which IE is it failing in? – Crescent Fresh Jan 11 '09 at 4:36
feedback

6 Answers

up vote 11 down vote accepted

I would have to agree, don't go reinventing the wheel, or in this case, AJAX.

JQuery and Prototype do an excellent job of letting you NOT have to deal with cross-browser support, and greatly simplifying Javascript type programming. I fell into JQuery first so I'm biased towards it, and from what I've seen the library is a little smaller (read: faster in the browser), but Prototype I believe has been around longer and has TONS of plugins and examples out there. Ruby on Rails also by default uses Prototype. Funny enough, the code in both looks very similar and takes little rewriting to change libraries.

JQuery Tutorials <-- Just head on down to the AJAX section

link|improve this answer
feedback

I would suggest using any of a number of different javascript frameworks for this functionality instead of reinventing it. There's jQuery, Prototype/Scriptaculous, MooTools, Dojo, and many others. All of these offer cross-browser support for what you are doing.

link|improve this answer
Despite not really wanting an entire framework for one simple little function, after looking around at the frameworks available I agree, this is the best route...no point recreating work that's already been done. – Adam Haile Jan 11 '09 at 14:21
feedback

Or you can try this if you don't need an entire framework: http://www.hunlock.com/blogs/The_Ultimate_Ajax_Object

link|improve this answer
feedback

If I were you, I'd use a toolkit like JQuery in order to make sure that it is as compatible as possible. No matter what, however, you're going to have to deal with the cases where it doesn't work. Don't forget that there are plenty of people who browse without javascript support.

link|improve this answer
feedback

I recommend jQuery, but there is also a very lightweight solution: XHConn

link|improve this answer
feedback

You might use an IE version which your script does not support. Try it again with this code snippet added before your function. ajaxinclude() can then be shortened to

function ajaxinclude(url)  {
    var req = new XMLHttpRequest;
    if(!req)
        return null;

    req.open('GET', url, false); // get page synchronously 
    req.send();
    return req.responseText;
}

As an aside: I generally dislike using frameworks - there's too much magic happening behind the scenes for me to feel comfortable...

link|improve this answer
1  
Agreed on feeling uncomfortable with behind the scenes magic... I knew the frameworks existed, but I just didn't think I need a whole huge framework when I really only need one simple function. – Adam Haile Jan 11 '09 at 14:19
@Adam: Did you try my suggestion? – Christoph Jan 11 '09 at 14:58
yes...I did, and it worked better. I just went with the framework in the end because the resulting code was much cleaner. – Adam Haile Jan 11 '09 at 16:14
feedback

Your Answer

 
or
required, but never shown

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