Error: An A Start Tag Seen But An Element Of The Same Type Was Already Open
My doctype is html5. I am validating this HTML: the spec:
Content model: Transparent, but there must be no interactive content descendant.
a
audio
(if thecontrols
attribute is present)button
details
embed
iframe
img
(if theusemap
attribute is present)input
(if thetype
attribute is not in the Hidden state)keygen
label
object
(if theusemap
attribute is present)select
textarea
video
(if thecontrols
attribute is present)
So your options are:
- Ignore the validator and keep it as it is (you have no right to expect all browsers to behave in the same way in this case)
- Choose a different markup structure altogether
- Replace either the block level or child links with normal elements and
click
events
Post a Comment for "Error: An A Start Tag Seen But An Element Of The Same Type Was Already Open"