Simple jQuery plugin that allows users to navigate between elements on a page with keyboard shortcuts.
- jQuery
After you have included jQuery in your page use the following lines of JavaScript:
<script>
$(function() {
$.keyboardNavigator('h1');
});
</script>
The above-mentioned script will allow you to jump back and forth on a page from one 'h1' element to the next.
View the index.html file for an example.