views:

19

answers:

1

This address is has a console javascript that i build with a custom
jquery plugin. I wan't to extract the exact DOM and CSS after i fill some
commands into it. Since the CSS and the DOM is generated at Runtime, i'm
unable to get it.

So my question is, how can i see this DOM and CSS that is generated at runtime?
Thank you very much.

+2  A: 

If you are using Firefox, use firebug.

If using IE, use the dev tools (F12).

With these and other browsers, you can also use firebuglite.

These all expose the DOM/CSS after it has been manipulated, as it is in the browser.

Oded
Chrome also has Inspect Element/Inspector/Developer Tools.
Ramon Marco Navarro
Firebug is the best tool for Firefox, there is also a jQuery plugin for Firebug so it can inspect jQuery too - FireQuery.
YouBook