In this tutorial I will show you how to replace button click event with keyboard shortcuts using JQuery. Previously, I used button click event I called the JavaScript function for generating the sitemap. Instead of the button event. Here, I m going to implement keyboard shortcuts.
This is asp.net MVC project. I have already registered jQuery in Layout page.
I have written code for keyboard event. CTRL+ G When these key is pressed I going
to call GenerateSitemap() function. The keycode 71 is for Letter 'G'.
Here, You can find the list of keycode value for the keyboard press.
Link:http://gcctech.org/csc/javascript/javascript_keycodes.htm
jQuery Code:
<script type="text/javascript">$(document).keydown(function (e) {if (e.ctrlKey && e.keyCode == 77) {GenerateSubmitURLs();}});function GenerateSubmitURLs() {//Code here..}</script>
VIDEO TUTORIAL JQURERY KEYBOARD EVENT:
This video demonstrates how I Implementing keyboard shortcuts using jQuery.
Post your comments / questions
Recent Article
- How to create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article