Results 21 - 40 of 54

Window.home()

Returns the window to the home page.
API DOM Gecko Method NeedsCompatTable

Element.className

className gets and sets the value of the class attribute of the specified element.
API DOM Gecko Property Reference Référence

Element.innerHTML

The Element.innerHTML property sets or gets the HTML syntax describing the element's descendants.
API DOM Gecko NeedsBrowserCompatibility Property Reference

Element.insertAdjacentElement()

The insertAdjacentElement() method inserts a given element node at a given position relative to the element it is invoked upon.
API DOM Element Gecko insertAdjacentElement Method Reference

Element.insertAdjacentText()

The insertAdjacentText() method inserts a given text node at a given position relative to the element it is invoked upon.
API DOM Element Gecko insertAdjacentText Method Reference

Event.bubbles

Indicates whether the given event bubbles up through the DOM or not.
API DOM Gecko Property Reference Référence

Event.preventDefault()

Cancels the event if it is cancelable, without stopping further propagation of the event.
API DOM Event Gecko Method preventDefault

Event.timeStamp

Returns the time (in milliseconds) at which the event was created.
API DOM Event Gecko Property Reference timeStamp

Node.nodeType

The read-only Node.nodeType property that represents the type of the node.
API DOM Gecko Property Reference Référence

NodeList.length

length returns the number of items in a NodeList.
API DOM Gecko Property Reference Référence

Window.back()

Returns the window to the previous item in the history. This was a Gecko-specific method. Use the standard history.back method instead.
API DOM Gecko Method Non-standard

Window.captureEvents()

Registers the window to capture all events of the specified type.
API DOM DOM_0 Gecko Method Non-standard

Window.close()

The Window.close() method closes the current window, or the window on which it was called.
API DOM Gecko Method Reference Référence Window

Window.openDialog()

window.openDialog() is an extension to window.open(). It behaves the same, except that it can optionally take one or more parameters past windowFeatures, and windowFeatures itself is treated a little differently.
API DOM DOM_0 Gecko Method Non-standard

Window.scrollMaxX

Returns the maximum number of pixels that the document can be scrolled horizontally.
API DOM DOM_0 Gecko Non-standard Property

Document.getElementsByClassName()

Returns an array-like object of all child elements which have all of the given class names. When called on the document object, the complete document is searched, including the root node. You may also call getElementsByClassName() on any element; it will return only elements which are descendants of the specified root element with the given class names.
API DOM DOM Element Methods Gecko HTML5 Method Reference Référence

Element.insertAdjacentHTML()

insertAdjacentHTML() parses the specified text as HTML or XML and inserts the resulting nodes into the DOM tree at a specified position. It does not reparse the element it is being used on and thus it does not corrupt the existing elements inside the element. This, and avoiding the extra step of serialization make it much faster than direct innerHTML manipulation.
API DOM DOM Element Methods Gecko Method Reference Référence