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 case of jquery 's ajax() function?
|
When you call the By default, jQuery will try to guess the
As an example, the following ajax call will return the data as a plain text string, without executing the scripts or manipulating the DOM:
|
|||||
|
That depends how you do the loading. If you write that string to the However, if you then insert that element into the document (whether it was already inside the document before or not), it will be executed in many browsers, the first time you do it. In IE, the script will be executed when you directly insert a script element into any element, whether in the document or not. This is all very inconsistent and inconvenient, which is why you should avoid AJAX-loading jQuery's As for stylesheets and stylesheet links, inserting them into the body does generally work, though by HTML's terms it probably shouldn't. |
||||
|
|
When you say "load" I understand that to merely mean invoking XHR (or $.ajax or $.get etc) to pull down an XML, JSON, or text resource from a web server, store it in the browser's JS runtime memory, and get a reference to it. For HTML resources, that act alone doesn't parse anything. However, if you take that HTML and inject it into the DOM (at least in Firefox 3.5), then it will be interpreted. For example, say you had the following three, very professional files. barf1.html:
barf2.html:
barf3.html:
When you navigate to barf1.html, the page content will change, and you will see two JavaScript alerts, indicating that both inline script blocks and external script files are interpreted. |
||||
|
|
|
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 You can however go through the If you use this type of |
|||||||||
|
|
As has been pointed out, in general - no, script tags will not be interpreted. I'm not at all sure what will happen with the other tags. I'm making an assumption here that you are loading an entire page in AJAX - I'm not sure why you would want to do that? Maybe you could give us a bit more information and we could make some suggestions? To address your question more directly - in general, any scripts required on the reloaded content should not be reloaded with the content but with the page. That way you can arrange to have a callback from your AJAX reattaches event handlers etc. |
|||
|
|