Forum Moderators: open
im trying to open up a new window using javascript!
The XML page cannot be displayed
Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
--------------------------------------------------------------------------------
Only one top level element is allowed in an XML document. Error processing resource 'http://localhost/aa/gallery2/index.php'. Line 61, Position 4
<body onload="setImage(0);">
---^
illegal example
<?xml version="1.0" encoding="UTF-8"?>
<body>
<heading />
<subheading />
</body>
<footer>
<colophon />
</footer>
well-formed example
<?xml version="1.0" encoding="UTF-8"?>
<document>
<body>
<heading />
<subheading />
</body>
<footer>
<colophon />
</footer>
</document>
another well-formed example
<?xml version="1.0" encoding="UTF-8"?>
<document>
<body>
<heading />
<subheading />
<footer>
<colophon />
</footer>
</body>