How do I go about capturing the CTRL + S event in a webpage?
I do not wish to use jQuery or any other special library.
Thanks for your help in advance.
|
How do I go about capturing the CTRL + S event in a webpage? I do not wish to use jQuery or any other special library. Thanks for your help in advance. |
||||
|
|
|
If you're just using native / vanilla JavaScript, this should achieve the results you are after:
What's happening? The onkeydown method checks to see if it is the CTRL key being pressed (key code 17). If so, we set the isCtrl value to true to mark it as being activated and in use. We can revert this value back to false within the onkeyup function. We then look to see if any other keys are being pressed in conjunction with the ctrl key. In this example, key code 83 is for the S key. You can add your custom processing / data manipulation / save methods within this function, and we return false to try to stop the browser from acting on the CTRL-S key presses itself. |
|||||||
|
You need to replace DEMO |
|||||||||||
|
Some events can't be captured, since they are capture by the system or application. |
|||||
|
|
Oops you wanted simultaneous, changed code to reflect your scenario
Add this to body
|
|||||||||||||||||||
|
|
Add Shortcuts JS library and do the following code :
Then
|
|||
|
|