vote up 0 vote down star

How can I only load the HTML of a page into an IFRAME, without automatically triggering the download of all the css,scripts,images,videos on the page?

Or can you get an event the moment the DOM is "ready".. when the initial HTML has loaded and nothing much more.

flag

4 Answers

vote up 4 vote down check

There is no cross-browser way to do this. Some browsers provide events that fire when the DOM loads, like DOMContentLoaded for Gecko.

jQuery implements this functionality. I suggest you either use jQuery for this:

$(document).ready(function () {
  // Function is called when the DOM is loaded.
});

Or check how jQuery implements it. See the bindReady function in the jQuery source code.

link|flag
+1 I was about to suggest using domFunction brothercake.com/site/resources/… or a JavaScript framework such as jQuery. – Mathias Bynens May 17 at 12:26
2  
Btw, your syntax is incorrect: it should be $(document).ready(function() { // Function is called when the DOM is loaded. }); or even better: $(function() { // Function is called when the DOM is loaded. }); – Mathias Bynens May 17 at 12:27
@Mathias Indeed, I forgot the closing parenthesis. Fixed now. Thanks. – Ayman Hourieh May 17 at 12:29
vote up 2 vote down

To get only the HTML contents, try using an AJAX call. That would, of course, return the content in a variable, but you might process it as you see fit afterward.

link|flag
vote up 2 vote down

Set 'Content-type' for that HTML page to text/plain.

link|flag
vote up 1 vote down

The short answer is "You can't".

Internet Explorer supports a propriatry attribute which can prevent scripts from executing, but it isn't cross browser and doesn't deal with images or stylesheets.

A number of JS libraries implement a custom event that fires when the DOM is ready - but browsers load resources in parallel, so while that event may fire before all images and stylesheets are loaded, it is unlikely to fire before the other elements start to download.

If you really want the page to load without those things - process it on the server to strip out the HTML that includes them.

link|flag
Nice idea. I'll do that. – Jeremy Rudd May 17 at 12:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.