Browser Object Model (BOM)
Browser Object Model (BOM)
Alert(location.href); // shows current URL
if (confirm("Go to wikipedia?")) {
location.href = "https://wikipedia.org"; // redirect the browser to another URL
} Are additional objects provided by the browser (host environment) to work with everything except the document.
Semantic portal