We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is an add-on to #5.
When using the library to an <a> tag with an href, the HTML becomes invalid according to the W3C validator.
<a>
href
For instance:
<a href="https://github.com/" aria-label="GitHub" data-microtip-position="bottom" role="tooltip">GitHub</a>
will produce the following error:
Attribute href not allowed on element a at this point.
a
Removing role="tooltip" clears the error, but the tooltip obviously won't work.
role="tooltip"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is an add-on to #5.
When using the library to an
<a>
tag with anhref
, the HTML becomes invalid according to the W3C validator.For instance:
will produce the following error:
Removing
role="tooltip"
clears the error, but the tooltip obviously won't work.The text was updated successfully, but these errors were encountered: