HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-02-21
1 <p>A<strong>BOM</strong>(browser object model) is a set of global objects that control browser behavior. You can find all of them within the window.</p>
1 <p>A<strong>BOM</strong>(browser object model) is a set of global objects that control browser behavior. You can find all of them within the window.</p>
2 <p>Let's take a look at some of them:</p>
2 <p>Let's take a look at some of them:</p>
3 <h3>Navigator</h3>
3 <h3>Navigator</h3>
4 <p>It provides information about the browser, such as version, name, the locale used, available permissions, and plug-ins enabled:</p>
4 <p>It provides information about the browser, such as version, name, the locale used, available permissions, and plug-ins enabled:</p>
5 <h3>Location</h3>
5 <h3>Location</h3>
6 <p>It allows you to manage the address bar. For example, this is how you can initiate the loading of another page:</p>
6 <p>It allows you to manage the address bar. For example, this is how you can initiate the loading of another page:</p>
7 <h3>History</h3>
7 <h3>History</h3>
8 <p>With the help of this object, you can navigate through the history of transitions.</p>
8 <p>With the help of this object, you can navigate through the history of transitions.</p>
9 <p>Moreover, you can form it in cases where there is no actual transition through the pages:</p>
9 <p>Moreover, you can form it in cases where there is no actual transition through the pages:</p>
10 <h3>Fetch</h3>
10 <h3>Fetch</h3>
11 <p>It is a modern method for executing AJAX requests. Communication with the server and other sites happens with the help of the fetch() function:</p>
11 <p>It is a modern method for executing AJAX requests. Communication with the server and other sites happens with the help of the fetch() function:</p>
12 <p>You can learn more about this in a future lesson.</p>
12 <p>You can learn more about this in a future lesson.</p>