| Issue 5: | jmesaWeb limit.jsp IE support enhancement | |
| Back to list |
Add this javascript fragment to the page before the onInvokeAction function
to support Internet Explorer:
<script type="text/javascript">
/**
* Make IE's XMLHTTP object accessible through XMLHttpRequest()
*/
if (typeof XMLHttpRequest == 'undefined') {
XMLHttpRequest = function () {
var msxmls = ['MSXML3', 'MSXML2', 'Microsoft']
for (var i=0; i < msxmls.length; i++) {
try {
return new ActiveXObject(msxmls[i]+'.XMLHTTP')
}
catch (e) { }
}
throw new Error("No XML component installed!")
}
}
</script>
Feb 15, 2007
#1
extremec...@gmail.com
Status:
Fixed
|