Guest User

Untitled

a guest
Jun 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <textarea id="chat"></textarea>
  2. <input type="submit" value="Submit" onclick="send_msg();">
  3.  
  4. textarea.onkeyup = function(e) {
  5. alert(e.keyCode);
  6. e = e || window.event;
  7. if (e.keyCode === 13) {
  8. send_msg();
  9. }
  10. return true;
  11. }
  12.  
  13. t // t
  14. と // to
  15. とう // tou
  16. とうk // touk
  17. とうky // touky
  18. とうきょ // toukyo
  19. とうきょう // toukyou
Add Comment
Please, Sign In to add comment