vaisan, это собственно твое встраивание html "со скриптами"?
Сообщение от vaisan
|
function XHR(filename) {
var url = filename;
fetch(url).then(function (response) {//response.json()
response.text().then(function (text) {
document.getElementById("divSource").innerHTML = text;
});
});
};
|