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
- Import "django.shortcuts" could not be resolved from source in Django Project
- How to add two numbers in Android Studio? | Source Code
- FindViewByID returns null in android studio -SOLVED
- Saving changes is not permitted in SQL SERVER - [SOLVED]
- Restore of database failed. File cannot be restored over the existing. -[SOLVED]
- One or more projects in the solution were not loaded correctly in Visual Studio 2019 | FIXED
- How to find Laptop's Battery Health?
- SOLVED-Related Field got invalid lookup: icontains error in Django
Related Article