vote up 1 vote down star

Hi,

can you tell me why my searches are working ok in IE8 but get stuck with safari and chrome?

www.netivot.biz

The ajax code is at www.netivot.biz/js/Ajax.js

It works with some xml and xslt files

thanks daniel

flag

0% accept rate

1 Answer

vote up 1 vote down

Your getAjaxObject() method is clearly bogus. You first try to use new XMLHttpRequest(); which succeeds in every browser Opera,FF,IE7+,Safari,Chrome.

But then you don't return your xmlHttp variable but continue and try new ActiveXObject("Msxml2.XMLHTTP"); which clearly will fail in all browsers except IE6+. Which means in every browser other then IE (and IE < v6) your getAjaxObject() method will always fail and return false.

Use this version instead

function getAjaxObject() {
  var xmlHttp = null;
  try {
    //FF, Opera, Safari, Chrome, IE7+
    xmlHttp = new XMLHttpRequest();
  } catch(e) {
    try {
      //IE6+
      xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
    } catch(e) {
      try {
        //IE5+
        xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
      } catch(e) {
        xmlHttp  = null;
      }
    }
  }
  return xmlHttp;
}
link|flag
just replaced the code with the one you gave me, and same same IE8 Ok but chrome and safari stuck with the loader any advise? – qaedus Nov 8 at 14:23

Your Answer

Get an OpenID
or

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