Forum Moderators: open
These errors:
1. cannot generate system identifier for general entity "prefcode"
2. general entity "prefcode" not defined and no default entity
3. reference not terminated by REFC delimiter
4. reference to external entity in attribute value
5. reference to entity "prefcode" for which no system identifier could be generated
6. entity was defined here
are caused by this:
<a href="http://www.domain.com/page.jsp?aid=01234&prefcode=ABC"
This error:
1. document type does not allow element "input" here
is caused by this:
<div>
<div>
<div>
<form action="action" method="post">
<input type="hidden" name="name" value="value" />
<input name="name" size="15" type="text" />
<input type="submit" value="Submit" />
</form>
</div>
</div>
</div>
Can anyone help clear this up?
How can I open something in a new window without using Javascript?
You can't - either in XHTML 1.0 Strict or HTML 4.01 Strict. Obviously, it will still work if you use
target="_blank", but if you want it to validate, then you should use a transitional doctype. This earlier thread [webmasterworld.com] might help.