"); $.post("/ajax/send_msg", {'msg' : txt}, function(result){ let jsonResult = $.parseJSON(result); result = jsonResult.result; text = jsonResult.text; if(result == 'ok') { text = '' + text + ''; $("#txt").val(''); } else { text = '' + text + ''; } $("#return_msg").html(text); $("#send").html(send_html); }); }