1 | XML code embedded in an HTML page |
2 | Enables integration of XML with HTML page (XML data can be accessed by scripts) |
3 | Contains well-formed XML document within <XML> </XML> tags |
4 | |
5 | <XML ID="clipXML"> |
6 | <clip> |
7 | <title>The Fish Slapping Dance</title> |
8 | <size unit="KB"</size> |
9 | </clip> |
10 | </XML> |
11 | |
12 | clipXML.documentElement.childNodes.item(0).text |
13 |