Does internet explorer 6.0 on Windows CE 5.0 supports AJAX?
- From: Daniele Z. <DanieleZ@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 2 Dec 2008 01:54:00 -0800
Good morning,
I'm trying to execute a simple piece of code to test AJAX functionalities on
Windows CE 5.0 and Internet explorer 6.0. The result is always the same:"Your
browser does not support AJAX!". Javascript is enabled.
Is really not supported on WinCE 5.0 or am I missing something?
Thanks a lot for help...
Daniele
<html>
<script language=javascript>
function ajaxFunction()
{var xmlHttp;
try
{ // Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{ // Internet Explorer
try
{ xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
try
{ xmlHttp=new
ActiveXObject("Microsoft.XMLHTTP");
}
catch (e)
{ alert("Your browser does not
support AJAX!");
return false;
}
}
}
}
</script>
<body>
<form name="f1">
<p>word: <input name="word" type="text">
<input value="Go" type="button" onclick='JavaScript:ajaxFunction()'></p>
<div id="result"></div>
</form>
</body>
</html>
.
- Follow-Ups:
- Re: Does internet explorer 6.0 on Windows CE 5.0 supports AJAX?
- From: Paul G. Tobey [eMVP]
- Re: Does internet explorer 6.0 on Windows CE 5.0 supports AJAX?
- Prev by Date: Re: failed to load a dll compiled in debug mode
- Next by Date: Building a Camera app in Windows ce 6.0
- Previous by thread: Re: Connect an already running application to debugger
- Next by thread: Re: Does internet explorer 6.0 on Windows CE 5.0 supports AJAX?
- Index(es):
Loading