Does anyone know a way to identify specific HTML files when using 'Inspect Element' for Chrome? I can edit locally but unlike CSS there are no associated filenames with HTML editing. Thanks Nick Garnett
|
feedback
|
|
You can only associate a filename with an HTML file from a browser / editor if they're stitching it together on the client, such as with an Commonly pages will be constructed on the server side, such as with PHP, ASP or (a long time ago) SSI. If this is what is going on, you'll never see the original files which build the page. In addition the URL can be rewritten, as with If the site is under your control, check If not, you're probably out of luck unless the URL is particularly informative. | |||||
feedback
|