Articles tagged: API
Found 5012 documents
- Web/API/Window/scrollbars Returns the scrollbars object, whose visibility can be checked.
- Web/API/Window/scrollBy Scrolls the document in the window by the given amount.
- Web/API/Window/scrollByLines Scrolls the document by the given number of lines.
- Web/API/Window/scrollByPages Scrolls the current document by the specified number of pages.
- Web/API/Window/scrollMaxX Returns the maximum number of pixels that the document can be scrolled horizontally.
- Web/API/Window/scrollMaxY Returns the maximum number of pixels that the document can be scrolled vertically.
- Web/API/Window/scrollTo Scrolls to a particular set of coordinates in the document.
- Web/API/Window/scrollX The read-only scrollX property of the Window interface returns the number of pixels that the ...
- Web/API/Window/scrollY The read-only scrollY property of the Window interface returns the number of pixels that the ...
- Web/API/Window/self The Window.self read-only property returns the window itself, as a WindowProxy. It can be used ...
- Web/API/Window/sessionStorage The sessionStorage property allows you to access a session Storage object for the current ...
- Web/API/Window/setCursor Changes the cursor for the current window.
- Web/API/Window/setImmediate This method is used to break up long running operations and run a callback function immediately ...
- Web/API/Window/showModalDialog The Window.showModalDialog() creates and displays a modal dialog box containing a specified HTML ...
- Web/API/Window/sizeToContent The Window.sizeToContent() method sizes the window according to its content. In order for it to ...
- Web/API/Window/speechSynthesis The speechSynthesis read-only property of the Window object returns a SpeechSynthesis object, ...
- Web/API/Window/StaticRange The StaticRange property of the Window interface returns a StaticRange() constructor which ...
- Web/API/Window/status Sets the text in the status bar at the bottom of the browser or returns the previously set text.
- Web/API/Window/statusbar Returns the statusbar object, whose visibility can be toggled in the window.
- Web/API/Window/stop This method stops window loading.
- Web/API/Window/toolbar Returns the toolbar object, whose visibility can be toggled in the window.
- Web/API/Window/top Returns a reference to the topmost window in the window hierarchy.
- Web/API/Window/updateCommands Updates the state of commands of the current chrome window (UI).
- Web/API/Window/URL The Window.URL property returns an object that provides static methods used for creating and ...
- Web/API/Window/visualViewport The visualViewport read-only property of the Window interface returns a VisualViewport object ...
- Web/API/Window/window The window property of a window object points to the window object itself.
- Web/API/WindowBase64 The WindowBase64 helper contains utility methods to convert data to and from base64, a ...
- Web/API/WindowClient The WindowClient interface of the ServiceWorker API represents the scope of a service worker ...
- Web/API/WindowClient/focus The focus() method of the WindowClient interface gives user input focus to the current client ...
- Web/API/WindowClient/focused The focused read-only property of the WindowClient interface is a Boolean that indicates whether ...
- Web/API/WindowClient/navigate The navigate() method of the WindowClient interface loads a specified URL into a controlled ...
- Web/API/WindowClient/visibilityState The visibilityState read-only property of the WindowClient interface indicates the visibility of ...
- Web/API/WindowEventHandlers WindowEventHandlers mixin describes the event handlers common to several interfaces like Window, ...
- Web/API/WindowEventHandlers/onafterprint The WindowEventHandlers.onafterprint property sets and returns the onafterprint EventHandler for ...
- Web/API/WindowEventHandlers/onbeforeprint The property onbeforeprint sets and returns the onbeforeprint event handler code for the current ...
- Web/API/WindowEventHandlers/onbeforeunload The WindowEventHandlers.onbeforeunload event handler property contains the code executed when ...
- Web/API/WindowEventHandlers/onlanguagechange The WindowEventHandlers.onlanguagechange event handler is a property containing the code to ...
- Web/API/WindowEventHandlers/onmessage The onmessage property of the WindowEventHandlers is the EventHandler called whenever an object ...
- Web/API/WindowEventHandlers/onmessageerror The onmessageerror event handler of the WindowEventHandlers interface is an EventListener, ...
- Web/API/WindowEventHandlers/onpopstate onpopstate is an event handler for the popstate event on the window.
- Web/API/WindowEventHandlers/onrejectionhandled The Window.onrejectionhandled property is an event handler for processing rejectionhandled ...
- Web/API/WindowEventHandlers/onstorage The WindowEventHandlers.onstorage property contains an event handler that runs when the storage ...
- Web/API/WindowEventHandlers/onunhandledrejection The Window.onunhandledrejection property is an event handler for processing unhandledrejection ...
- Web/API/WindowEventHandlers/onunload The unload event is raised when the window is unloading its content and resources. The resources ...
- Web/API/WindowOrWorkerGlobalScope The WindowOrWorkerGlobalScope mixin describes several features common to the Window and ...
- Web/API/WindowOrWorkerGlobalScope/atob The WindowOrWorkerGlobalScope.atob() function decodes a string of data which has been encoded ...
- Web/API/WindowOrWorkerGlobalScope/btoa The WindowOrWorkerGlobalScope.btoa() method creates a base-64 encoded ASCII string from a String ...
- Web/API/WindowOrWorkerGlobalScope/caches The caches read-only property of the WindowOrWorkerGlobalScope interface returns the ...
- Web/API/WindowOrWorkerGlobalScope/clearInterval The clearInterval() method of the WindowOrWorkerGlobalScope mixin cancels a timed, repeating ...
- Web/API/WindowOrWorkerGlobalScope/clearTimeout The clearTimeout() method of the WindowOrWorkerGlobalScope mixin cancels a timeout previously ...
- Web/API/WindowOrWorkerGlobalScope/createImageBitmap The createImageBitmap method exists on the global in both windows and workers. It accepts a ...
- Web/API/WindowOrWorkerGlobalScope/fetch The fetch() method of the WindowOrWorkerGlobalScope mixin starts the process of fetching a ...
- Web/API/WindowOrWorkerGlobalScope/indexedDB The indexedDB read-only property of the WindowOrWorkerGlobalScope mixin provides a mechanism for ...
- Web/API/WindowOrWorkerGlobalScope/isSecureContext The isSecureContext read-only property of the WindowOrWorkerGlobalScope interface returns a ...
- Web/API/WindowOrWorkerGlobalScope/origin The origin read-only property of the WindowOrWorkerGlobalScope interface returns the origin of ...
- Web/API/WindowOrWorkerGlobalScope/setInterval The setInterval() method of the WindowOrWorkerGlobalScope mixin repeatedly calls a function or ...
- Web/API/WindowOrWorkerGlobalScope/setTimeout The setTimeout() method of the WindowOrWorkerGlobalScope mixin (and successor ...
- Web/API/WindowTimers WindowTimers is a mixin used to provide utility methods which set and clear timers. No objects ...
- Web/API/Worker The Worker interface of the Web Workers API represents a background task that can be easily ...
- Web/API/Worker/onmessage The onmessage property of the Worker interface represents an EventHandler, that is a function to ...
- Web/API/Worker/onmessageerror The onmessageerror event handler of the Worker interface is an EventListener, called whenever an ...
- Web/API/Worker/postMessage The postMessage() method of the Worker interface sends a message to the worker's inner scope. ...
- Web/API/Worker/terminate The terminate() method of the Worker interface immediately terminates the Worker. This does not ...
- Web/API/Worker/Worker The Worker() constructor creates a Worker object that executes the script at the specified URL. ...
- Web/API/WorkerGlobalScope The WorkerGlobalScope interface of the Web Workers API is an interface representing the scope of ...
- Web/API/WorkerGlobalScope/close The close() method of the WorkerGlobalScope interface discards any tasks queued in the ...
- Web/API/WorkerGlobalScope/console The console read-only property of the WorkerGlobalScope interface returns a Console object ...
- Web/API/WorkerGlobalScope/dump The dump() method of the WorkerGlobalScope interface allows you to write a message to stdout — ...
- Web/API/WorkerGlobalScope/importScripts The importScripts() method of the WorkerGlobalScope interface synchronously imports one or more ...
- Web/API/WorkerGlobalScope/location The location read-only property of the WorkerGlobalScope interface returns the WorkerLocation ...
- Web/API/WorkerGlobalScope/navigator The navigator read-only property of the WorkerGlobalScope interface returns the WorkerNavigator ...
- Web/API/WorkerGlobalScope/onclose The onclose property of the WorkerGlobalScope interface represents an EventHandler to be called ...
- Web/API/WorkerGlobalScope/onerror The onerror property of the WorkerGlobalScope interface represents an EventHandler to be called ...
- Web/API/WorkerGlobalScope/onlanguagechange The onlanguagechange property of the WorkerGlobalScope interface represents an EventHandler to ...
- Web/API/WorkerGlobalScope/onoffline The onoffline property of the WorkerGlobalScope interface represents an EventHandler to be ...
- Web/API/WorkerGlobalScope/ononline The ononline property of the WorkerGlobalScope interface represents an EventHandler to be called ...
- Web/API/WorkerGlobalScope/performance The performance read-only property of the WorkerGlobalScope interface returns a Performance ...
- Web/API/WorkerGlobalScope/self The self read-only property of the WorkerGlobalScope interface returns a reference to the ...
- Web/API/WorkerLocation The WorkerLocation interface defines the absolute location of the script executed by the Worker. ...
- Web/API/WorkerNavigator The WorkerNavigator interface represents a subset of the Navigator interface allowed to be ...
- Web/API/WorkerNavigator/connection The Navigator.connection read-only property returns a NetworkInformation object containing ...
- Web/API/WorkerNavigator/permissions The WorkerNavigator.permissions read-only property returns a Permissions object that can be used ...
- Web/API/WorkerNavigator/sendBeacon The NavigatorWorker.sendBeacon() method can be used to asynchronously transfer a small amount of ...
- Web/API/Worklet The Worklet interface is a lightweight version of Web Workers and gives developers access to ...
- Web/API/Worklet/addModule The addModule() method from the Worklet interface loads the module in the given JavaScript file ...
- Web/API/WritableStream The WritableStream interface of the the Streams API provides a standard abstraction for writing ...
- Web/API/WritableStream/abort The abort() method of the WritableStream interface aborts the stream, signaling that the ...
- Web/API/WritableStream/getWriter The getWriter() method of the WritableStream interface returns a new instance of ...
- Web/API/WritableStream/locked The locked getter property of the WritableStream interface returns a boolean indicating whether ...
- Web/API/WritableStream/WritableStream The WritableStream() constructor creates a new WritableStream object instance.
- Web/API/WritableStreamDefaultController The WritableStreamDefaultController interface of the the Streams API represents a controller ...
- Web/API/WritableStreamDefaultController/error The error() method of the WritableStreamDefaultController interface causes any future ...
- Web/API/WritableStreamDefaultController/WritableStreamDefaultController The WritableStreamDefaultController() constructor creates and returns a ...
- Web/API/WritableStreamDefaultWriter The WritableStreamDefaultWriter interface of the the Streams API is the object returned by ...
- Web/API/WritableStreamDefaultWriter/abort The abort() method of the WritableStreamDefaultWriter interface aborts the stream, signaling ...
- Web/API/WritableStreamDefaultWriter/close The close() method of the WritableStreamDefaultWriter interface closes the associated writable ...
- Web/API/WritableStreamDefaultWriter/closed The closed getter property of the WritableStreamDefaultWriter interface returns a promise that ...
- Web/API/WritableStreamDefaultWriter/desiredSize The desiredSize getter property of the WritableStreamDefaultWriter interface returns the desired ...
- Web/API/WritableStreamDefaultWriter/ready The ready getter property of the WritableStreamDefaultWriter interface returns a Promise that ...
- Web/API/WritableStreamDefaultWriter/releaseLock The releaseLock() method of the WritableStreamDefaultWriter interface releases the writer's lock ...