Skip to content

Instantly share code, notes, and snippets.

View CristalT's full-sized avatar

Marcelo Forclaz CristalT

View GitHub Profile
@CristalT
CristalT / arrownav.js
Last active July 6, 2016 00:15
It allows navigate an HTML table by using keyboard arrows
$.fn.arrownav = function(options) {
var settings = $.extend({
focusOnLoad: true
}, options);
var curRow = this.children('tr:first-child'),
r=0;
if(settings.focusOnLoad) {
curRow.focus();
}
this.children('tr').click(function(){