Articles tagged: API
Found 5012 documents
- Web/API/Document/exitFullscreen The Document.exitFullscreen() is a method that takes the document out of full-screen mode; this ...
- Web/API/Document/exitPointerLock The exitPointerLock asynchronously releases a pointer lock previously requested through ...
- Web/API/Document/fgColor fgColor gets/sets the foreground color, or text color, of the current document.
- Web/API/Document/forms forms returns a collection (an HTMLCollection) of the form elements within the current document.
- Web/API/Document/fullscreen The Document.fullscreen read-only property reports whether or not the document is currently ...
- Web/API/Document/fullscreenElement The Document.fullscreenElement read-only property returns the Element that is currently being ...
- Web/API/Document/fullscreenEnabled The Document.fullscreenEnabled read-only property returns a Boolean that reports whether or not ...
- Web/API/Document/getAnimations The getAnimations() method of the Document interface returns an array of all Animation objects ...
- Web/API/Document/getBoxObjectFor Returns a boxObject (x, y, width, height) for a specified element.
- Web/API/Document/getElementById Returns a reference to the element by its ID ; the ID is a string which can be used to uniquely ...
- Web/API/Document/getElementsByClassName Returns an array-like object of all child elements which have all of the given class names. When ...
- Web/API/Document/getElementsByName Returns a nodelist collection with a given name in the (X)HTML document.
- Web/API/Document/getElementsByTagName Returns an HTMLCollection of elements with the given tag name.
- Web/API/Document/getElementsByTagNameNS Returns a list of elements with the given tag name belonging to the given namespace. The ...
- Web/API/Document/getSelection This method functions identically to the Window.getSelection() method; it returns a Selection ...
- Web/API/Document/hasFocus false if the active element in the document has no focus; true if the active element in the ...
- Web/API/Document/head Returns the head element of the current document. If there are more than one head elements, the ...
- Web/API/Document/height Returns the height of the document object. In most cases, this is equal to the body element of ...
- Web/API/Document/images document.images returns a collection of the images in the current HTML document.
- Web/API/Document/implementation Returns a DOMImplementation object associated with the current document.
- Web/API/Document/importNode The Document method importNode() creates a new copy of the specified Node or DocumentFragment ...
- Web/API/Document/lastModified Returns a string containing the date and time on which the current document was last modified.
- Web/API/Document/lastStyleSheetSet Returns the last enabled style sheet set; this property's value changes whenever the ...
- Web/API/Document/linkColor linkColor gets/sets the color of links within the document.
- Web/API/Document/links The links property returns a collection of all area elements and a elements in a document with a ...
- Web/API/Document/loadOverlay The loadOverlay() method loads a XUL overlay and merges it with the current document, notifying ...
- Web/API/Document/location The Document.location read-only property returns a Location object, which contains information ...
- Web/API/Document/mozSetImageElement Changes the element being used as the CSS background for a background with a given background ...
- Web/API/Document/mozSyntheticDocument Indicates whether or not the document is a synthetic one; that is, a document representing a ...
- Web/API/Document/onafterscriptexecute Fired when a static script element finishes executing its script. Does not fire if the element ...
- Web/API/Document/onbeforescriptexecute Fired when the code in a script element declared in an HTML document is about to start ...
- Web/API/Document/onfullscreenchange The Document.onfullscreenchange property is an event handler for the fullscreenchange event that ...
- Web/API/Document/onfullscreenerror The Document.onfullscreenerror property is an event handler for the fullscreenchange event that ...
- Web/API/Document/onoffline This event handler is called when an offline is fired on body and bubbles up, when ...
- Web/API/Document/ononline " online " event is fired on the body of each page when the browser switches between online and ...
- Web/API/Document/onselectionchange The Document.onselectionchange property represents the event handler that is called when a ...
- Web/API/Document/onvisibilitychange The Document.onvisibilitychange property represents the event handler that is called when a ...
- Web/API/Document/open The Document.open() method opens a document for writing.
- Web/API/Document/origin The Document.origin read-only property returns the document's origin. In most cases, this ...
- Web/API/Document/plugins Returns an HTMLCollection object containing one or more HTMLEmbedElement s or null which ...
- Web/API/Document/pointerLockElement The pointerLockElement property provides the element set as the target for mouse events while ...
- Web/API/Document/popupNode When a popup attached via the popup or context attributes is opened, the XUL document's ...
- Web/API/Document/preferredStyleSheetSet Returns the preferred style sheet set as set by the page author.
- Web/API/Document/queryCommandState TBD
- Web/API/Document/queryCommandSupported The Document.queryCommandSupported() method reports whether or not the specified editor command ...
- Web/API/Document/querySelector Returns the first Element within the document that matches the specified selector, or group of ...
- Web/API/Document/querySelectorAll Returns a list of the elements within the document (using depth-first pre-order traversal of the ...
- Web/API/Document/readyState The Document.readyState property of a document describes the loading state of the document.
- Web/API/Document/referrer Returns the URI of the page that linked to this page.
- Web/API/Document/registerElement The document.registerElement() method registers a new custom element in the browser and returns ...
- Web/API/Document/releaseCapture Releases mouse capture if it's currently enabled on an element within this document. Enabling ...
- Web/API/Document/scripts Returns a list of the script elements in the document. The returned object is an HTMLCollection.
- Web/API/Document/scrollingElement The scrollingElement read-only property of the Document interface returns a reference to the ...
- Web/API/Document/selectedStyleSheetSet Indicates the name of the style sheet set that's currently in use.
- Web/API/Document/styleSheets The Document.styleSheets read-only property returns a StyleSheetList of CSSStyleSheet objects ...
- Web/API/Document/styleSheetSets Returns a live list of all of the currently-available style sheet sets.
- Web/API/Document/timeline The timeline readonly property of the Document interface represents the default timeline of the ...
- Web/API/Document/title Gets or sets the title of the document.
- Web/API/Document/tooltipNode Returns the node which is the target of the current tooltip.
- Web/API/Document/URL The URL read-only property of the Document interface returns the document location as a string.
- Web/API/Document/vlinkColor Gets/sets the color of links that the user has visited in the document.
- Web/API/Document/width Returns the width of the body element of the current document in pixels.
- Web/API/Document/write Writes a string of text to a document stream opened by document.open().
- Web/API/Document/writeln Writes a string of text followed by a newline character to a document.
- Web/API/Document/xmlEncoding Returns the encoding as determined by the XML declaration. Should be null if unspecified or unknown.
- Web/API/Document/xmlVersion Returns the version number as specified in the XML declaration (e.g., ?xml version="1.0"?) or ...
- Web/API/DocumentFragment The DocumentFragment interface represents a minimal document object that has no parent. It is ...
- Web/API/DocumentFragment/DocumentFragment The DocumentFragment() constructor returns an empty newly created DocumentFragment object.
- Web/API/DocumentFragment/querySelector The DocumentFragment.querySelector() method returns the first element, or null if no matches are ...
- Web/API/DocumentFragment/querySelectorAll The DocumentFragment.querySelectorAll() method returns a NodeList of elements within the ...
- Web/API/DocumentOrShadowRoot The DocumentOrShadowRoot interface of the Shadow DOM API provides APIs that are shared between ...
- Web/API/DocumentOrShadowRoot/activeElement The activeElement property of the DocumentOrShadowRoot interface returns the element within the ...
- Web/API/DocumentOrShadowRoot/caretPositionFromPoint The caretPositionFromPoint() property of the DocumentOrShadowRoot interface returns a ...
- Web/API/DocumentOrShadowRoot/elementFromPoint The elementFromPoint() property of the DocumentOrShadowRoot interface returns the topmost ...
- Web/API/DocumentOrShadowRoot/elementsFromPoint The elementsFromPoint() property of the DocumentOrShadowRoot interface returns an array of all ...
- Web/API/DocumentOrShadowRoot/getSelection The getSelection() property of the DocumentOrShadowRoot interface returns a Selection object, ...
- Web/API/DocumentOrShadowRoot/styleSheets The styleSheets property of the DocumentOrShadowRoot interface returns a StyleSheetList of ...
- Web/API/DocumentTimeline The DocumentTimeline interface of the the Web Animations API represents animation timelines, ...
- Web/API/DocumentTimeline/DocumentTimeline The DocumentTimeline() constructor of the Web Animations API creates a new instance of the ...
- Web/API/DocumentTouch The DocumentTouch interface used to provide convenience methods for creating Touch and TouchList ...
- Web/API/DocumentType The DocumentType interface represents a Node containing a doctype.
- Web/API/Document_Object_Model The Document Object Model (DOM) connects web pages to scripts or programming languages. Usually ...
- Web/API/DOMConfiguration Pre-defined parameters: "canonical-form", "cdata-sections", "check-character-normalization", ...
- Web/API/DOMError The DOMError interface describes an error object that contains an error name.
- Web/API/DOMErrorHandler Set as "error-handler" parameter in DOMConfiguration.setParameter. Implementation may provide a ...
- Web/API/DOMException The DOMException interface represents an abnormal event (called an exception) which occurs as a ...
- Web/API/DOMException/code The code read-only property of the DOMException interface returns a short that contains one of ...
- Web/API/DOMException/DOMException The DOMException() constructor returns a DOMException object with a specified message and name.
- Web/API/DOMException/message The message read-only property of the DOMException interface returns a DOMString representing a ...
- Web/API/DOMException/name The name read-only property of the DOMException interface returns a DOMString that contains one ...
- Web/API/DOMHighResTimeStamp The DOMHighResTimeStamp type is a double and is used to store a time value. The value could be a ...
- Web/API/DOMImplementation The DOMImplementation interface represent an object providing methods which are not dependent on ...
- Web/API/DOMImplementation/createDocument The DOMImplementation.createDocument() method creates and returns an XMLDocument.
- Web/API/DOMImplementation/createDocumentType The DOMImplementation.createDocumentType() method returns a DocumentType object which can either ...
- Web/API/DOMImplementation/createHTMLDocument The DOMImplementation.createHTMLDocument() method creates a new HTML Document.
- Web/API/DOMImplementation/hasFeature The DOMImplementation.hasFeature() method returns a Boolean flag indicating if a given feature ...
- Web/API/DOMImplementationList Returned by DOMImplementationSource.getDOMImplementationList() and ...
- Web/API/DOMImplementationRegistry This is a global variable used to get a single DOMImplementation or DOMImplementationList ...
- Web/API/DOMImplementationSource Can request a particular implementation based on needed features and versions (which can then be ...
- Web/API/DOMLocator Indicates a location such as where an error occurred. Returned by DOMError.location.