Nish
Nish

Reputation: 405

Is there an add-on to view the CURRENT source of an HTML page after AJAX components have been triggered?

In Firefox (Windows) when you view source from the browser it will not update the source on a page if certain AJAX components have changed. An example is you navigate to the page and it fully loads.

An AJAX component triggers and changes the source, but if you click view source after this event it will not register. If you download the HTML file and then view in an external program it will show the change.

Is there anyway to quickly view the current source accurately?

Upvotes: 3

Views: 1228

Answers (3)

loxx
loxx

Reputation: 126

ctrl-A -> rightclick -> View Selection Source

Upvotes: 1

timdev
timdev

Reputation: 62864

The web developer toolbar does this too.

Once installed, in the "View Source" sub-menu, there's an option for "View Generated Source"

Upvotes: 3

Amber
Amber

Reputation: 526483

Firebug can do this.

Upvotes: 2

Related Questions