vote up 0 vote down star

How do I trigger something when the cursor is within TEXTAREA and Ctrl+Enter is pressed? Using jQuery. Thanks

flag

44% accept rate

3 Answers

vote up 5 vote down check

You can use the event.ctrlKey flag to see if the Ctrl key is pressed, something like this:

$('#textareaId').keydown(function (e) {

  if (e.ctrlKey && e.keyCode == 13) {
    // Ctrl-Enter pressed
  }
});

Check the above snippet here.

link|flag
vote up 0 vote down

$('my_text_area').focus(function{ set_focus_flag });

//ctrl on key down set flag

//enter on key down = check focus flag, check ctrl flag

link|flag
vote up 0 vote down

first you have to set a flag when Cntr is pressed, do this onkeydown. then you have to check the keydown of enter. unset the flag when you see a keyup for cntrl.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.