Includes ':tabbable' and ':focusable' selectors from jQuery UI Core
npm install ember-tabbable
ember install ember-tabbable
`
Usage
You will be able to use the selectors :tabbable and :focusable directly in your project.
`
import Ember from 'ember';
export default Component.extend({
didInsertElement() {
const tabbableElements = this.$(':tabbable');
const focusableElements = this.$(':focusable');
}
});
``