Как вставить тег внутри в голове с помощью javascript.Вставить тег внутри другого тега в <head> с помощью javascript/jQuery
<noscript>
<img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=801318466672120&ev=PageView&noscript=1"
/></noscript>
Я попытался
var nonscript = document.createElement('noscript');
nonscript.innerHTML = "<img height='1' width='1' style='display:none' src='https://www.facebook.com/tr?id=801318466672120&ev=PageView&noscript=1'/>";
head.appendChild(nonscript);
но приходит как
<noscript>
"<img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr id=801318466672120&ev=PageView&noscript=1"
/>" </noscript>
10 noscript доступен только в том случае, если JS отключен – Oriol