vote up 1 vote down star

Is there any way to get a browser (or some other program) to show me the DOM of a web page, as modified by JavaScript code?

For example, say I have some simple markup. I then use some JavaScript (say, via jQuery) to add classes, move things around, etc. Is there any way to "view source" on the modified version, as it would look if that was how it was originally marked up?

No real reason, just curious if there's something that does that. I've seen people post examples like "here's what the markup would look like after modification", and I didn't know if they did that by hand, or if there's a nifty tool (or obvious way I haven't thought of) to do that.

flag
This is a duplicate of several other questions asked here. – Kinopiko Oct 26 at 2:53
@Kinopiko - I looked for a while before posting. If there are exact duplicates, could you provide a link? – Ian Varley Oct 26 at 20:35

3 Answers

vote up 3 vote down check

Use Firebug or Safari's Web Inspector (Chrome has the same thing) or the Developer Toolbar for IE.

link|flag
The nice thing of Firebug being that you can clearly see the difference in generated content and page content. – Abel Oct 26 at 2:38
1  
Chrome also has a set of Developer Tools in one of the menus, including a DOM browser. – Dav Oct 26 at 2:38
I wasn't sure about Chrome, but as it has the same base as Safari I'm not surprised. If it's the same as Safari's it's probably the best option, at least I like it a lot. :) – deceze Oct 26 at 2:41
vote up 2 vote down

Yes; FireBug shows you the current DOM via its inspector, HTML, and DOM tabs.

link|flag
vote up 1 vote down

on firefox there's a plugin called "web developer toolbar". it has the ability to "view generated source". you can also use firebug and just explore the dom, watching your changes in real time-ish.

link|flag

Your Answer

Get an OpenID
or

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