Contents

[edit]

Tidy: ... shouldn't be nested

[edit]

Cause:

Some tag can not be contained in themselve. For ex, a FORM tag in a FORM tag. This message can also appear due to previous errors in the order of tags.

[edit]

Example:

Good

<form action="action.jsp" name="form">
<form action="action2.jsp" name="form2">
</form>
</form>

Good

<form action="action.jsp" name="form">
</form>
<form action="action2.jsp" name="form2">
</form>

[edit]

Solution:

Remove the nesting of tags or correct the previous errors.

[edit]

References:

Retrieved from "http://www.htmlpedia.org/wiki/Tidy_25"