javascript Programming Glossary: e.ctrlkey
Ctrl+S preventDefault in Chrome http://stackoverflow.com/questions/11000826/ctrls-preventdefault-in-chrome Only with jQuery document .bind 'keydown' function e if e.ctrlKey e.which 83 e.preventDefault alert 'Ctrl S' return false Edit..
Is there a way to capture/override Ctrl-R or F5 on IE using Javascript? http://stackoverflow.com/questions/1400528/is-there-a-way-to-capture-override-ctrl-r-or-f5-on-ie-using-javascript R on Safari and FF using document.onkeypress function e if e.ctrlKey e.metaKey e.keyCode 114 Ctrl R e.preventDefault But that doesn't..
Ctrl+Enter jQuery in TEXTAREA http://stackoverflow.com/questions/1684196/ctrlenter-jquery-in-textarea something like this '#textareaId' .keydown function e if e.ctrlKey e.keyCode 13 Ctrl Enter pressed Check the above snippet here..
How does Trello access the user's clipboard? http://stackoverflow.com/questions/17527870/how-does-trello-access-the-users-clipboard it # looks like they're starting a copy shortcut if @value e.ctrlKey e.metaKey return if e.target .is input visible textarea visible..
JavaScript or Jquery event handlers for “ctrl”/“shift” + mouse left button click http://stackoverflow.com/questions/2485345/javascript-or-jquery-event-handlers-for-ctrl-shift-mouse-left-button-click selector .click function e if e.shiftKey Shift Click if e.ctrlKey Ctrl Click if e.altKey Alt Click Just handle whichever you want..
How to make tinymce paste in plain text by default http://stackoverflow.com/questions/2695731/how-to-make-tinymce-paste-in-plain-text-by-default ed.onKeyDown.add function ed e if tinymce.isMac e.metaKey e.ctrlKey e.keyCode 86 e.shiftKey e.keyCode 45 ed.pasteAsPlainText true..
Capture key press without placing an input element on the page? http://stackoverflow.com/questions/2878983/capture-key-press-without-placing-an-input-element-on-the-page checkWebkitandIE e.which 26 1 0 var checkMoz e.which 122 e.ctrlKey 1 0 if checkWebkitandIE checkMoz body .append p ctrl z detected.. of situations document .keydown function e if e.keyCode 90 e.ctrlKey body .append p ctrl z detected p share improve this answer..
jquery ctrl+enter as enter in text area http://stackoverflow.com/questions/3532313/jquery-ctrlenter-as-enter-in-text-area MessageTextOnKeyEnter function MessageTextOnKeyEnter e if e.ctrlKey e.keyCode 13 SendMessage return false else if e.keyCode 13.. enter function MessageTextOnKeyEnter e if e.keyCode 13 if e.ctrlKey var val this.value if typeof this.selectionStart number typeof..
jQuery key code for command key http://stackoverflow.com/questions/3834175/jquery-key-code-for-command-key was pressed you should use window .keydown function e if e.ctrlKey alert control The list of modifier keys e.ctrlKey e.altKey e.shiftKey.. e if e.ctrlKey alert control The list of modifier keys e.ctrlKey e.altKey e.shiftKey And as fudgey suggested e.metaKey Might..
Bind Multiple Keys to Keypress Event http://stackoverflow.com/questions/4173460/bind-multiple-keys-to-keypress-event to the way keyboards are wired . You can use the e.altKey e.ctrlKey e.shiftKey fields to check if the matching modifier key was..
Detect whether scroll event was created by user http://stackoverflow.com/questions/7035896/detect-whether-scroll-event-was-created-by-user dn e.which 32 spacebar e.which 38 up e.which 40 down e.ctrlKey e.which 36 ctrl home e.ctrlKey e.which 35 ctrl end userScroll.. 38 up e.which 40 down e.ctrlKey e.which 36 ctrl home e.ctrlKey e.which 35 ctrl end userScroll true detect user scroll through..
Submitting data from textarea by hitting “Enter” http://stackoverflow.com/questions/789701/submitting-data-from-textarea-by-hitting-enter SomeTextarea .onkeyup function e e e event if e.keyCode 13 e.ctrlKey start your submit function return true share improve this..
Deploying a Google Chrome extension; Adobe Flash Player has stopped a potentially unsafe operation http://stackoverflow.com/questions/9368982/deploying-a-google-chrome-extension-adobe-flash-player-has-stopped-a-potentiall detecting and remembering whether Ctrl was pressed use the e.ctrlKey property. And some more. Have a look at popup.js and search..
Adding POST parameters before submit http://stackoverflow.com/questions/993834/adding-post-parameters-before-submit
|