Reputation: 5546
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
Reputation: 11637
yes firebug marks the changed div in yellow and you can see the html dynamic updates in the html view
Upvotes: 2
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
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):
Upvotes: 2