-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIEXmlDomExample2.htm
More file actions
executable file
·43 lines (36 loc) · 1.4 KB
/
Copy pathIEXmlDomExample2.htm
File metadata and controls
executable file
·43 lines (36 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title>IE XML DOM Example</title>
</head>
<body>
<p>This example is known to work only in Internet Explorer.</p>
<script type="text/javascript">
function createDocument(){
if (typeof arguments.callee.activeXString != "string"){
var versions = ["MSXML2.DOMDocument.6.0", "MSXML2.DOMDocument.3.0",
"MSXML2.DOMDocument"];
for (var i=0,len=versions.length; i < len; i++){
try {
var xmldom = new ActiveXObject(versions[i]);
arguments.callee.activeXString = versions[i];
return xmldom;
} catch (ex){
//skip
}
}
}
return new ActiveXObject(arguments.callee.activeXString);
}
var xmldom = createDocument();
xmldom.loadXML("<root>");
if (xmldom.parseError != 0){
alert("An error occurred:\nError Code: "
+ xmldom.parseError.errorCode + "\n"
+ "Line: " + xmldom.parseError.line + "\n"
+ "Line Pos: " + xmldom.parseError.linepos + "\n"
+ "Reason: " + xmldom.parseError.reason);
}
</script>
</body>
</html>