Difference between revisions of "View Source"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(See also)
(See also)
 
Line 29: Line 29:
 
* [[Web browser]]
 
* [[Web browser]]
 
* [[Web browser tool]]
 
* [[Web browser tool]]
 +
 +
[[Category:Web browsers]]
 +
[[Category:Web design]]
 +
[[Category:Web design and development]]

Latest revision as of 14:11, 24 April 2016

View Source is a feature in many web browsers which displays the source code for a particular web page which the browser is displaying.

Description

Select the View Source option (or "View Page Source", etc.) from the browser menu.

The browser will open a window containing the source code.

View Source features vary from browser to browser. Typical features include:

View Source does not change when the DOM changes

View Source shows the source code for the web web, exactly as it was received from the web server.

View Source does not change when the Document Object Model (DOM) changes.

The DOM typically does change, in a modern web page, in response to JavaScript.

Inspect Element

Use Inspect Element is a related tools which allows you to view and manipulate the DOM, among other features.

See also