ChatServer/pages/js/message.js

5 lines
143 B
JavaScript
Raw Normal View History

2016-07-26 13:10:18 +00:00
$('#msginput').keypress(function(e) {
2016-07-20 13:02:49 +00:00
if (e.which == '\r'.charCodeAt(0))
document.write(document.getElementById("msginput").value);
});