16 lines
324 B
JavaScript
16 lines
324 B
JavaScript
|
$(document).ready(() => {
|
||
|
const sendData = async () => {
|
||
|
alert(1);
|
||
|
}
|
||
|
|
||
|
$("#send-message-button").click(sendData);
|
||
|
|
||
|
$('#chat-input').keyup(function(e){
|
||
|
if(e.keyCode == 13)
|
||
|
{
|
||
|
$(this).trigger("enterKey");
|
||
|
}
|
||
|
});
|
||
|
|
||
|
$("#chat-input").bind("enterKey", sendData);
|
||
|
});
|