altunoren adlı üyeden alıntı

$("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) {
e.preventDefault();
this.form.submit();
}
});



Bu işini görür sanırım.


Hocam o kod buna nasıl eklenir?

$(document).ready(function(){
$('input#chat').bind('keydown', function(e){
if(e.shiftKey && e.keyCode==13){

$('input#chat').val($('input#chat').val() + "\n");

} else if(e.keyCode==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