Shortaccesskey - Documentation

Purpose

The shortaccesskey plugin provides a easier and faster way to use the accesskeys assigned to links instead of the standard key combinations like SHIFT+ALT+key and CTRL+key.

Features

Licence

Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses

Preparing your HTML

To use this plugin, first assign the standard HTML attribute accesskey to the desired links in your page. The final link tag should look like -

<a href="somepage.html" accesskey="s">Link to page</a>
        

Add the attribute to as many links as you want in your page. There is no limit. Just make sure that every link has a unique accesskey.

Usage

Add the latest jQuery file in your page followed by the jquery.shortaccesskey.js plugin file. And add the following code after it -

<script type="text/javascript">
    $(document).ready (function () {
        $.shortaccesskey(); // Call this to activate the short access keys

    });
</script>
            
Open the page in your favorite browser and press the key which you assigned as accesskey to any of the links.

Demo

Click here for the demo.

Download

Click here to download from official jQuery plugin repository.
Alternate download link.