Прошу прощения, но может мне скажет кто из знающих, почему я не могу свойством innerHTML впихнуть таблицу в элемент? Код (Javascript): 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); } И пустой див на странице