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 check PAN-Aadhaar is Linked or NOT?
- How to customize pagination for django admin?
- How to fix HAXM is not installed |in Android Studio
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
Related Article