Spreads a title attribute of an abbr element
A title attribute of an abbr element is important, but writing title
attribute with every abbr element is annoying. This small JavaScript library
spreads first abbr element’s title attribute to other same abbr
element(s).
For example:
<p><abbr title="HyperText Markup Language">HTML</abbr> is dead, long live <abbr>
HTML</abbr>!</p>With this library, it is converted to:
<p><abbr title="HyperText Markup Language">HTML</abbr> is dead, long live <abbr
title="HyperText Markup Language">HTML</abbr>!</p>Love hover.
Put dist/abbread.js into head element of your HTML document.
<script defer src="/js/abbread.js"></script>Don’t forget defer attribute!
MIT