Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 536
mattruma Avatar asked Aug 26 '09 15:08

mattruma


People also ask

Can JavaScript read the source of any Web page?

If for some odd reason, you wanted to view the source code of another page without having to actually browse to that page and click “page view source,” you can use JavaScript to do so. In the example below, I use the “window.

How do I check if a website is fully loaded in jquery?

$( document ).ready() Code included inside $( window ).on( "load", function() { ... }) will run once the entire page (images or iframes), not just the DOM, is ready.


1 Answers

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

alt text
(source: getfirebug.com)

like image 127
Rex M Avatar answered Oct 11 '22 18:10

Rex M