Just tossing out an idea here.
I have had problems with IE sometimes where, depending on the version of
MSXML.dll being used IE will crash unexpectedly. Sometimes it appears to be
related to the encoding used, but that is hard to nail down. Usually I
tended to get the error in IE 6 on machines with MS Office which had
MSXML5.dll installed and using the following code:
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
That basically let's the user's computer decide which version of MSXML is
registered.
I always had the best luck forcing MSXML version 3 like this:
var httpReq = new ActiveXObject('MSXML2.XMLHTTP.3.0');
Also, what kind of element is "character"? IE doesn't like it when you
attempt to innerHTML a table after page load.
Ok one more think, how come your readyStateChange function isn't checking
the xmlHttp.readyState flag or the xmlHttp.status flag.
Usually I am used to seeing something like:
if (xmlhttp.readyState==4) // 4 = "loaded"
{
if (xmlhttp.status==200) // 200 = OK
{
// Do something
}
}
~Brad
----- Original Message -----
From: "Phillip M. Vector" <[EMAIL PROTECTED]>
To: "CF-Talk" <[email protected]>
Sent: Monday, July 28, 2008 7:59 PM
Subject: Re: Unknown JS error when doing AJAX.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j
Archive:
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309848
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe:
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4