$(document).ready(function(){
$("input#chat").keypress(function(e) {
var textVal = $(this).val();
if(e.which == 13 && e.shiftKey) {
$('input#chat').val($('input#chat').val() + "\n");
}
else if (e.which == 13) {
var message = $('input#chat').val();
var id = $('#chat').attr('class');
if(message) {
// Remove chat errors if any
$('.chat-error').remove();
// Show the progress animation
$('.message-loader').show();
// Reset the chat input area
Böyle bir dene. Çalışması gerek.