Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to view the source of currently displayed html page(dynamically) than the original page? [duplicate]

G'day everybody, As an avid firefox user, I use plugins like stylish and Greasemonkey to modify default styles of pages. However the view->page source option of the browser shows only the page in its original form and not the current form after it is manipulated by a script or a style. Is there any way i can view the source of a page based on what is displayed on the browser and not the original page sent by the server?. Any suggestions would be much be appreciated. Thanks.

paul bullard

like image 412
paulbullard Avatar asked Mar 01 '23 11:03

paulbullard


1 Answers

Use Firebug...

Firebug allows you to inspect the current DOM, CSS and loaded JavaScripts on the fly.

You can also modify anything on the current document and see the results automatically.

like image 50
Christian C. Salvadó Avatar answered Mar 03 '23 08:03

Christian C. Salvadó