Здравствуйте
Есть код
(function(){
'use strict';
function loadContentToHead(){
var head = document.querySelector('head');
var containerScriptToHead = document.createElement('div');
containerScriptToHead.id = 'containerScriptToHead';
head.appendChild(containerScriptToHead);
var xhr = typeof XMLHttpRequest != 'undefined' ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');
xhr.open('get', 'file-scripts.html', true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
head.innerHTML = xhr.responseText;
}
else{
console.log('Error');
}
}
xhr.send();
}
loadContentToHead();
})();
Сейчас все работает, но создается
div
(валидатор ругается)
В
html
, который подгружается, находятся скрипты, поэтому использовать скрипт не могу