Socket
Socket
Sign inDemoInstall

dom-navigator

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dom-navigator

Library that allow keyboard navigation through DOM elements (←↑→↓).


Version published
Weekly downloads
3
decreased by-25%
Maintainers
1
Weekly downloads
 
Created
Source

DOM Navigator

Library that allow keyboard navigation through DOM elements (←↑→↓).

Installation

Bower
bower install dom-navigator --save
NPM
npm install dom-navigator --save
Manual
  1. Download the latest release.
  2. Then include dom-navigator-###.min.js into your HTML page.

Usage

Pure JavaScript
var el = document.querySelector('#grid');
new DomNavigator(el);
jQuery

If jQuery is included you can use the library as a jQuery plugin:

var el = $('#grid');
el.domNavigator();

Want to contribute?

All help are more than welcome!

Pre-requisites
Development Workflow
  1. Fork this respository.

  2. Clone your fork and create a feature branch from develop.

    git clone git@github.com:<your-username>/dom-navigator.git
    git fetch origin
    git checkout develop
    git checkout -b feature-<super-power>
    
  3. Install development dependencies.

    npm install
    bower install
    
  4. Code and be happy!

  5. Test your code using QUnit grunt test.

  6. Submit a pull request and grab popcorn.

Credits

dom-navigator was created by Rubens Mariuzzo with all the love in the world.

Keywords

FAQs

Package last updated on 16 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc