Contents

[edit]

Tidy: ... id and name attribute value mismatch

[edit]

Cause:

NAME and ID are the old and the new name for the same attribute. If both are defined, they should be equal. Use id (new) or name (old):

[edit]

Example:

Define the name=id or just id.

Good<a name="abcdef" id="ghijklm">
Good<a name="abcdefgh" id="abcdefgh">
Good<a id="abcdefgh">
[edit]

Solution:

Remove one of the both attribute or make the 2 values of ID and NAME equal

[edit]

References:

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