How do I trigger something when the cursor is within TEXTAREA and Ctrl+Enter is pressed? Using jQuery. Thanks
|
|
|
|
|
|
|
You can use the
Check the above snippet here. |
||
|
|
|
|
$('my_text_area').focus(function{ set_focus_flag }); //ctrl on key down set flag //enter on key down = check focus flag, check ctrl flag |
||
|
|
|
|
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. |
||
|
|
