else if (e.keyCode == 13) { if( e.preventDefault ) e.preventDefault(); else e.returnValue = false; document.fmsg.cmd.value=''; msg_send(); document.fmsg.submit(); }; };
msg_send(); document.fmsg.submit();
<input type=text placeholder="Ваше сообщение..." name=text0 maxlength=500 style="width:800px;" autocomplete="off" onkeydown="sendCtrl(event);" onkeypress="if(enabletrans==1) return autotrans(this,event);">
/* Отправка сообщений в чат */ function sendCtrl(e) { e = e || window.event; if (e.keyCode == 13 && e.ctrlKey) { if(document.fmsg.tonick.value!="") { document.fmsg.tonick.value = /\S+\s/mig.exec(document.fmsg.tonick.value); document.fmsg.cmd.value='/privat '; } else {document.fmsg.cmd.value=' '; alert('Вы не указали получателя приватного сообщения'); return false;} t=msg_send(); if(t==false) return false; document.fmsg.submit(); document.fmsg.cmd.value=''; } else if (e.keyCode == 13) { if(e.preventDefault) e.preventDefault(); else e.returnValue = false; document.fmsg.cmd.value=''; t=msg_send(); if(t==false) return false; document.fmsg.submit(); }; };