Poniendolo asi tampoco me funciona
Código Javascript
:
Ver original$(document).unbind('keypress');
$(document).keydown(function(e){
if(e.keyCode == 13) {
var clientmsg = $("#usermsg").val();
$.post("post.php", {text: clientmsg});
$("#usermsg").attr("value", "");
return false;
}
});
// jQuery Document
$(document).ready(function(){
//Si se envia el mensaje
$("#submitmsg").click(function(){
var clientmsg = $("#usermsg").val();
$.post("post.php", {text: clientmsg});
$("#usermsg").attr("value", "");
return false;
});