Ryan
Ryan

Reputation: 5546

See HTML of page after modified by Javascript

Is there any way to see the page in Firebug or other software after the content of a div has been replaced with ajax?

Upvotes: 2

Views: 139

Answers (3)

dov.amir
dov.amir

Reputation: 11637

yes firebug marks the changed div in yellow and you can see the html dynamic updates in the html view

Upvotes: 2

maxedison
maxedison

Reputation: 17573

Yes, that's exactly what Firebug will show you: the current state of the DOM. Same with Chrome's developer tools.

Upvotes: 3

Darin Dimitrov
Darin Dimitrov

Reputation: 1039438

Sure, you can inspect the DOM with FireBug which always shows the DOM at its most recent state (and of course accounts for AJAX updates):

enter image description here

Upvotes: 2

Related Questions