hail2u / abbread

Spreads a `title` attribute of an `abbr` element

Home Page:https://hail2u.github.io/abbread/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Abbread

Spreads a title attribute of an abbr element

SYNOPSIS

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.

USAGE

Put dist/abbread.js into head element of your HTML document.

<script defer src="/js/abbread.js"></script>

Don’t forget defer attribute!

LICENSE

MIT

About

Spreads a `title` attribute of an `abbr` element

https://hail2u.github.io/abbread/


Languages

Language:JavaScript 100.0%