So, I grab RSS feeds through AJAX. After processing them, I have an html string that I want to manipulate using various jQuery functions. To do this, I need a DOM node tree.
I can parse an HTML string in jQuery () function.
I can add it as innerHTML to the hidden node and use it.
I even tried to use the non-standard range of mozilla.createContextualFragment ().
The problem with all of these solutions is that when my HTML snippet has an <img> , firefox really extracts everything that the image refers to. Since this processing is a background material that is not displayed to the user, I would just like to get the DOM tree without a browser loading all the images contained in it.
Is this possible with javascript? I do not mind if this is only mozilla, since I already use javascript 1.7 functions (which seem to be mozilla-only for now)
javascript jquery image download
gfxmonk
source share