Код: Выделить всё
cpstsub.addEventListener('click', function(e) {
if (cmmsg == '') {
} else {
var datax = {
'msg': cmmsg,
'postname': postname,
'add_cmm': true,
};
$.ajax({
type: "POST",
url: "cmmntapi.php",
data: datax,
dataType: "dataType",
success: function (data) {
}
});
var datanme = {
'postname': postname,
};
$.ajax({
url: 'fetch_cmmnt.php',
method: "POST",
data: datanme,
success: function(data){
cmbhx.html(data);
}
});
}
})
Подробнее здесь: https://stackoverflow.com/questions/796 ... cond-click