jquery 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..
Disable zooming of the page in desktop web browsers using Javascript/Jquery [duplicate] http://stackoverflow.com/questions/14050841/disable-zooming-of-the-page-in-desktop-web-browsers-using-javascript-jquery function mouseWheel e disabling e e e window.event if e.ctrlKey if e.preventDefault e.preventDefault else e.returnValue false..
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..
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..
How to detect that Ctrl+R was pressed? http://stackoverflow.com/questions/2767126/how-to-detect-that-ctrlr-was-pressed of CTRL A document .keydown function e if e.keyCode 65 e.ctrlKey alert 'ctrl A' Ctrl R is tougher because in most browsers..
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..
JQGrid - Multiselect [closed] http://stackoverflow.com/questions/4186533/jqgrid-multiselect Finally The main part beforeSelectRow function rowid e if e.ctrlKey e.shiftKey #grid .jqGrid 'resetSelection' else if e.shiftKey..
jquery: keypress, ctrl+c (or some combo like that) http://stackoverflow.com/questions/4604057/jquery-keypress-ctrlc-or-some-combo-like-that
Invoke the JEdtiable Submit Button By Modifying Plugin http://stackoverflow.com/questions/5914169/invoke-the-jedtiable-submit-button-by-modifying-plugin e.keyCode e.which 83 e.shiftKey e.altKey e.metaKey false e.ctrlKey true window.parent.receiveShortCutEvent e delegate created.. OUT MY MODIFICATION input.keypress function e if e.ctrlKey e.keyCode 83 alert Ctrl S pressed e.preventDefault tinyMCE.triggerSave.. add another if statement in that function if e.keyCode 83 e.ctrlKey e.preventDefault form.submit alert Ctrl S Pressed Alert only..
JQGRID: any easy way to implement undo on excel like jqGrid implementation http://stackoverflow.com/questions/7016109/jqgrid-any-easy-way-to-implement-undo-on-excel-like-jqgrid-implementation 0 .focus this.HandleEditMode function cell e var ctrl e.ctrlKey var alt e.altKey var keyCode e.keyCode e.keyCode e.which if.. integration assetGrid .keyup function e var ctrl e.ctrlKey var key e.charCode e.keyCode 0 if ctrl key 88 CUT ctrl key 67..
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..
TinyMCE + Jquery + PHP + AJAX Special chars issue http://stackoverflow.com/questions/8863560/tinymce-jquery-php-ajax-special-chars-issue ed.onKeyDown.add function ed e if tinymce.isMac e.metaKey e.ctrlKey e.keyCode 86 e.shiftKey e.keyCode 45 ed.pasteAsPlainText true..
Ctrl+S preventDefault in Chrome http://stackoverflow.com/questions/11000826/ctrls-preventdefault-in-chrome s' function e e.preventDefault alert 'Ctrl S' return false Only with jQuery document .bind 'keydown' function e if e.ctrlKey e.which 83 e.preventDefault alert 'Ctrl S' return false Edit 2012.12.17 jQuery.hotkeys says Hotkeys aren't tracked if you're..
Disable zooming of the page in desktop web browsers using Javascript/Jquery [duplicate] http://stackoverflow.com/questions/14050841/disable-zooming-of-the-page-in-desktop-web-browsers-using-javascript-jquery mousewheel mouseWheel false else obj.onmousewheel mouseWheel function mouseWheel e disabling e e e window.event if e.ctrlKey if e.preventDefault e.preventDefault else e.returnValue false return false I am developing a web app and all ui element..
Ctrl+Enter jQuery in TEXTAREA http://stackoverflow.com/questions/1684196/ctrlenter-jquery-in-textarea
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 click handler but any framework works on the part that matters selector .click function e if e.shiftKey Shift Click if e.ctrlKey Ctrl Click if e.altKey Alt Click Just handle whichever you want inside an if inside the click handler like I have above...
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 if tinymce.isOpera Firefox 2 .test navigator.userAgent ed.onKeyDown.add function ed e if tinymce.isMac e.metaKey e.ctrlKey e.keyCode 86 e.shiftKey e.keyCode 45 ed.pasteAsPlainText true else ed.onPaste.addToTop function ed e ed.pasteAsPlainText..
How to detect that Ctrl+R was pressed? http://stackoverflow.com/questions/2767126/how-to-detect-that-ctrlr-was-pressed function to trap ctrl characters. Here is my implementation of CTRL A document .keydown function e if e.keyCode 65 e.ctrlKey alert 'ctrl A' Ctrl R is tougher because in most browsers that is Reload Page which means the javascript doesn't run the..
jquery ctrl+enter as enter in text area http://stackoverflow.com/questions/3532313/jquery-ctrlenter-as-enter-in-text-area button. ctrl enter as real enter. #txtChatMessage .keydown MessageTextOnKeyEnter function MessageTextOnKeyEnter e if e.ctrlKey e.keyCode 13 SendMessage return false else if e.keyCode 13 this .val this .val n return true I have tried with both commented.. as though the enter key had been pressed when you press ctrl enter function MessageTextOnKeyEnter e if e.keyCode 13 if e.ctrlKey var val this.value if typeof this.selectionStart number typeof this.selectionEnd number var start this.selectionStart..
jQuery key code for command key http://stackoverflow.com/questions/3834175/jquery-key-code-for-command-key question jQuery already handles that. To check if control 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 And as fudgey suggested e.metaKey Might work on MAC... if control 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 And as fudgey suggested e.metaKey Might work on MAC. Some other ways here as well . share improve this..
Bind Multiple Keys to Keypress Event http://stackoverflow.com/questions/4173460/bind-multiple-keys-to-keypress-event can always be pressed but the PC might not understand it due 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 pressed. Example document .keydown function e if e.which 98..
JQGrid - Multiselect [closed] http://stackoverflow.com/questions/4186533/jqgrid-multiselect 'cb' this hides the checkboxes if you don't want them. Finally The main part beforeSelectRow function rowid e if e.ctrlKey e.shiftKey #grid .jqGrid 'resetSelection' else if e.shiftKey var initialRowSelect #grid .jqGrid 'getGridParam' 'selrow'..
jquery: keypress, ctrl+c (or some combo like that) http://stackoverflow.com/questions/4604057/jquery-keypress-ctrlc-or-some-combo-like-that
Invoke the JEdtiable Submit Button By Modifying Plugin http://stackoverflow.com/questions/5914169/invoke-the-jedtiable-submit-button-by-modifying-plugin setTimeout function var e type 'keypress' e.charCode e.keyCode e.which 83 e.shiftKey e.altKey e.metaKey false e.ctrlKey true window.parent.receiveShortCutEvent e delegate created event object 1 initMCE .editable.addInputType 'mce' element.. BEST ATTEMPT. I THINK I HAVE TO HAVE SOMETHING HERE.I'VE COMMENTED OUT MY MODIFICATION input.keypress function e if e.ctrlKey e.keyCode 83 alert Ctrl S pressed e.preventDefault tinyMCE.triggerSave tinyMCE.execCommand mceRemoveControl true original.. self.reset reset.apply form settings self and add another if statement in that function if e.keyCode 83 e.ctrlKey e.preventDefault form.submit alert Ctrl S Pressed Alert only here after 2 previous lines Tested Working. In your case you're..
JQGRID: any easy way to implement undo on excel like jqGrid implementation http://stackoverflow.com/questions/7016109/jqgrid-any-easy-way-to-implement-undo-on-excel-like-jqgrid-implementation cell .children input if inp inp.length 0 inp 0 .val '' inp 0 .focus this.HandleEditMode function cell e var ctrl e.ctrlKey var alt e.altKey var keyCode e.keyCode e.keyCode e.which if keyCode if keyCode 32 keyCode 126 ctrl alt switch the cell.. body .mouseup function start null Global KEYUP integration assetGrid .keyup function e var ctrl e.ctrlKey var key e.charCode e.keyCode 0 if ctrl key 88 CUT ctrl key 67 COPY ctrl key 86 PASTE ctrl key 90 UNDO if ctrl key 88 CUT..
Detect whether scroll event was created by user http://stackoverflow.com/questions/7035896/detect-whether-scroll-event-was-created-by-user .keydown function e if e.which 33 page up e.which 34 page 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 true detect user scroll through mouse Mozilla Webkit if.. 33 page up e.which 34 page 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 true detect user scroll through mouse Mozilla Webkit if window.addEventListener document.addEventListener..
TinyMCE + Jquery + PHP + AJAX Special chars issue http://stackoverflow.com/questions/8863560/tinymce-jquery-php-ajax-special-chars-issue if tinymce.isOpera Firefox 2 .test navigator.userAgent ed.onKeyDown.add function ed e if tinymce.isMac e.metaKey e.ctrlKey e.keyCode 86 e.shiftKey e.keyCode 45 ed.pasteAsPlainText true else ed.onPaste.addToTop function ed e ed.pasteAsPlainText..
|