This is sort of tangential to coding, but programmers often do "view source" on their own pages and on others' pages. I learned that when you do the normal View Source in Firefox, it takes the URL you're at and issues another GET request to that URL. There are two reasons why this is bad:

  1. If you've just issued a POST and do View Source, you won't see the HTML that your browser is actually rendering for you.
  2. If the site author has incorrectly made a form that takes some action (sends email or writes to a DB or whatever), then that action will be taken (or attempted, anyway) again. That's sort of dangerous.

I'd heard there was something I could add to about:config that would prevent this, but had no luck. I also read about some extensions that would get around this, Firebug chief among them, but ctrl-shift-u is so convenient when compared to F12 and then a couple of clicks to find the element you're interested in.

So... Is there a switch I can flip to make Firefox's View Source act like View Generated Source all the time and hit the cache instead of making a new GET request?

link|improve this question

Well, keyboard shortcuts aside, Firebug adds an "Inspect Element" option to the page's context menu. That makes finding the element you are interested in much easier than using view source, IMHO. – Sean Bright Mar 4 '09 at 17:32
I guess I feel that the keyboard shortcut is pretty important. I don't want to have to hit my mouse if I can help it sometimes and doing inspect in Firebug or right-clicking for view selection source or selecting View Generated Source all require that. Fail. – Ben Hamill Mar 4 '09 at 21:28
Something must be messed up with your Firefox. I just opened a page which changes every page load and the view source is always the same as the current page. Why on earth would FF issue another GET request anyway when it already has the code in memory? If it does, it sounds like a bug to me! – DisgruntledGoat Mar 6 '09 at 0:50
1  
@DisgruntledGoat I too noticed that "View Source" was creating a new HTTP request. It turned out that something was indeed messed up with my Firefox -- caching was disabled, so there was no cache to read from! Specifically, the following preferences in about:config had been set to false: browser.cache.disk.enable and browser.cache.memory.enable. Once I set them back to true (which is of course the default), then I was able to verify with HTTPFox that the view-source requests were reading from the cache instead of making a new request. – MatrixFrog Oct 5 '10 at 0:51
feedback

6 Answers

up vote 0 down vote accepted

Type "about:config" in the address bar.

In the filter box, type : "browser.cache"

"browser.cache.disk.enable" and "browser.cache.memory.enable" must be set to TRUE.

Done ! All credit to @MatrixFrog

link|improve this answer
feedback

If you install the web developer toolbar extension, there's an option under "View Source" called "View Generated Source" which will show you the current source of the page, including any DOM changes you may have made.

link|improve this answer
That's what I came here to post :) Voted you up. – Adam Neal Mar 4 '09 at 17:44
As you can see, I mentioned this (if obliquely) in my original post. See my comment on the question its self, please. – Ben Hamill Mar 4 '09 at 21:48
feedback

You do a Ctrl+A, right click and "view selection source", that doesn't re-request the page.

link|improve this answer
feedback

Use the FireBug extension. It displays (and allows you to navigate) only the rendered source, so there is no need for another request (and it shows Javascript changes).

link|improve this answer
feedback

"View Generated Source" is not the same source code you get with "View Source".

View Generated Source "improves" the code, parsing the html, adding newlines among tags, changing attributes order (width="100%" cellpadding="0" => cellpadding="0" width="100%"), adding attributes values (nowrap => nowrap="nowrap") and tags (tbody from nowhere), etc.

You might think this is better, but if you want to compare the old generated source with the actual file, it's useless.

Your best bet is search the directory cache.

Regards

link|improve this answer
feedback

@MatrixFrog I checked the about:config, and both browser.cache.disk.enable and browser.cache.memory.enable were enabled, but it still retrieved the page from web instead of cache when using Ctrl-U (View Source). tested on FF 3.5.3

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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