Перерисовываю таблицу с помощью ajax, но innerHTML вместо моего html вставляет в элемент undefined. Алертом проверял, данные корректны.
function send() {
var formData = new FormData(document.forms.request);
var xhr = new XMLHttpRequest();
xhr.onload = function() {
if (xhr.status === 200) {
if(xhr.responseText!=null){
alert(xhr.responseText);
document.getElementById('content').innerHTML=xhr.resoponseText;
}
}
else if (xhr.status !== 200) {
alert('Request failed. Returned status of ' + xhr.status);
}
};
xhr.open("POST", "table_updater.php");
xhr.send(formData);
}
Ну и пустой див на странице