When you load an html document using AJAX, what does it do with the nodes inside the HEAD tag: (script,link,style,meta,title) ignore them or load and parse them? And in the
No they will not be interpreted.
HTML can be loaded either by using innerHTML, or by DOM manipulation. In both cases, if the HTML contains tags, they will not be interpreted.
You can however go through the tags inside the Ajaxed HTML content, and eval() it, if you really need to.
If you use this type of script tag, however, it will be interpreted.