An open API service indexing awesome lists of open source software.

https://github.com/ReneNyffenegger/Browser-Object-Model

Investigating the Browser Object Model (BOM)
https://github.com/ReneNyffenegger/Browser-Object-Model

Last synced: about 2 months ago
JSON representation

Investigating the Browser Object Model (BOM)

Awesome Lists containing this project

README

        

# Browser-Object-Model

Wikipedia: 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](https://github.com/ReneNyffenegger/about-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.

Investigating the Browser Object Model (BOM)

window
|
+---document
| |
| +---anchors
| |
| +---forms
| |
| +---links
| |
| +---images
|
+---frames
|
+---history
|
+---location
|
+---navigator
|
+---screen
+
+---console

For the `document` element and its element beneath see the [Document Object Model](https://github.com/ReneNyffenegger/about-Document-Object-Model).

## window
### document
#### anchors[]
#### forms[]
#### links[]
#### images[]
### frames[]
### history
### location
### navigator
### screen