@heppokofrontend/jquery-accessible-name
v0.1.2
Published
[](LICENSE) [](https://www.npmjs.com/package/@heppokofrontend/jquery-accessible-name) [
Downloads
12
Maintainers
Readme
jQuery.fn.a11yName
Download
Install
If use CDN:
<script src="https://cdn.jsdelivr.net/npm/@heppokofrontend/[email protected]/dist/jquery.accessibleName.min.js"></script>If use npm:
npm i @heppokofrontend/jquery-accessible-nameSuppot
- The
aria-labelledbyattribute - The
aria-labelattribute - The
labelelement - The
titleattribute
Usage
<labal for="name">Your name</label>
<input id="name" />$(function() {
const a11yName = $('input').a11yName(); // > Your name
});