Guest User

Untitled

a guest
Nov 24th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $("#mytextarea").on("keypress keydown",function(e) {
  2. if ((e.which == '115' || e.which == '83' ) && (e.ctrlKey || e.metaKey)) {
  3. e.preventDefault();
  4. alert("Ctrl-s pressed");
  5. return false;
  6. }
  7. return true;
  8. });
Add Comment
Please, Sign In to add comment