jQuery plugin for creating spreadsheet-like data table with input fields and keyboard navigation support just like the Microsoft Excel
You can install tablenavigator via npm or cdn or local
npm install tablenavigator
<script src="//unpkg.com/tablenavigator"></script>
First add the javascript and CSS file to your webpage
<script src="/path/to/tablenavigator.jquery.js"></script>
$(document).ready(function() {
$('table').tablenavigator();
});