Browser Object Model
This article may have been previously nominated for deletion: Wikipedia:Articles for deletion/Browser Object Model exists. It is proposed that this article be deleted because of the following concern:
If you can address this concern by improving, copyediting, sourcing, renaming, or merging the page, please edit this page and do so. You may remove this message if you improve the article or otherwise object to deletion for any reason. Although not required, you are encouraged to explain why you object to the deletion, either in your edit summary or on the talk page. If this template is removed, do not replace it. This message has remained in place for seven days, so the article may be deleted without further notice. Find sources: "Browser Object Model" – news · newspapers · books · scholar · JSTOR Nominator: Please consider notifying the author/project: {{subst:proposed deletion notify|Browser Object Model|concern=The term is outdated. It is now called [[WebAPI]]s. (see clientside section)}} ~~~~ Timestamp: 20220910114312 11:43, 10 September 2022 (UTC) Administrators: delete |
HTML |
---|
Comparisons |
The Browser Object Model (BOM) is a browser-specific convention referring to all the objects exposed by the web browser. Unlike the Document Object Model, there is no standard for implementation and no strict definition, so browser vendors are free to implement the BOM in any way they wish.
That which we see as a window displaying a document, the browser program sees as a hierarchical collection of objects. When the browser parses a document, it creates a collection of objects that define the document and detail how it should be displayed. The object the browser creates is known as the Document Object Model (DOM). It is part of a larger collection of objects that the browser makes use of. This collection of browser objects is collectively known as the Browser Object Model, or BOM.
The top level of the hierarchy is the window
object, which contains the information about the window displaying the document. Some of its fields are objects themselves that describe the document and related information.
References