Is there a way to view the source of a web page AFTER all jquery scripts have run?

dom, javascript, jquery

Solution

Firebug will show the state of the DOM as it is in the current point in time:

(source: getfirebug.com)

Problem

I currently use Chrome/Firefox for my web development. Is there a plugin, or am I just another way, where you can view the HTML source AFTER all jQuery plug-ins have run? I just want to see what and how jQuery modified the HTML?

Original source