Javascript - Web API (Browser Builtin API )

About

The Web API is a collection of javascript function (API) that a browser implements.

It implements:

This is the browser builtin API and one main component of the web.

Documentation / Reference





Discover More
Global Namespace Web Console Firefox
Browser - (Window | Tab) (Javascript Global scope)

window: is a javascript object that represents a tab in the whole browser that render a document. is the javascript global scope for the variable in the browser. is part of the web api holds the...
Browser - DOM Web Api

The DOM Web API is a part of the Web Api that implements the DOM API in the browser to manipulate the DOM representation of a Web Page. This API made possible to manipulate programmatically Web Page (in...
Browser
Browser - Document variable (DOM) - Javascript

In a browser, the document is: a DOM document (in-memory tree) of a XML document (generally a HTML dom document) The document is provided by the browser via its DOM webapi (Not by the Javascript...
Browser
Browser - Drag and drop

drag and drop where a user may select draggable elements with a mouse, drag those elements to a droppable element, and drop them by releasing the mouse button ...
Browser - History API

API The history api is a browser api that permits to modify the URL history (ie the URL in the browser bar) It's heavily used in a single page application to improve SEO in order to send a signal...
Scroll Bar
Browser - Scroll

This page is scrolling in the internet context (http, html, javascript). Scrolling is implemented by the browser in response to: user interaction (scrollbar, click) or Javascript code. Via...
Browser - Storage (Client Side Data)

This page is client side data (ie stateless session) in the browser. cookie local storage WebStorage - name/value pairs - Method of storing data locally...
Chrome Devtool Xhr Fetch Request
Browser - Web API - Fetch function

The fetch function is part of the web api function and is a AJAX call. It's one of the possibilities to fetch a resource. XMLHttpRequest (XHR) The fetch function returns a promise as response. The Fetch...
Browser Local Storage Devtool
Browser - Web API - Local Storage

localStorage is a browser/client side data storage mechanism. It's one of the two web storage (key/pair) api and is part of the web api The localStorage property allows you to access a local StorageStorage...
Browser
Browser - Worker (Javascript)

Web Workers makes it possible to run a script operation in a background thread separate from the main execution thread of a web application. They are part of the web api (ie browser api) Same as workers...



Share this page:
Follow us:
Task Runner