0.1.2 • Published 3 years ago

@heppokofrontend/jquery-accessible-name v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

jQuery.fn.a11yName

MIT License Published on NPM npm.io Maintainability Test Coverage Known Vulnerabilities jquery-accessible-name

Download

Download is here

Install

If use CDN:

<script src="https://cdn.jsdelivr.net/npm/@heppokofrontend/jquery-accessible-name@0.1.2/dist/jquery.accessibleName.min.js"></script>

If use npm:

npm i @heppokofrontend/jquery-accessible-name

Suppot

  • The aria-labelledby attribute
  • The aria-label attribute
  • The label element
  • The title attribute

Usage

<labal for="name">Your name</label>
<input id="name" />
$(function() {
  const a11yName = $('input').a11yName(); // > Your name
});