I'm developing a Web App with HTML5 and jQuery 1.10. I'm using the accesskey attribute in inputs and links to improve the navigation.
Actually I have this code:
$("#linktabCost").attr("accesskey", "1");
$("#linktabCapture").attr("accesskey", "2");
$("#linktabInvoice").attr("accesskey", "3");
With this code, the accesskeys are working as follows:
My question is:
How can I set the accesskey to the numbers of the keyboard numeric pad with jQuery?