Liking cljdoc? Tell your friends :D

web.DOMImplementation

The DOMImplementation interface represents an object providing which are not dependent on any particular document. Such an object returned by the Document.implementation property.

The DOMImplementation interface represents an object providing
which are not dependent on any particular document. Such an object
returned by the `Document.implementation` property.
raw docstring

create-documentcljs

(create-document this namespace-uri qualified-name-str document-type)

Method.

The DOMImplementation.createDocument() method creates and returns web.XMLDocument.

var doc = document.implementation.createDocument(namespaceURI, qualifiedNameStr, documentType);

See also: https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createDocument

Method.

The DOMImplementation.createDocument() method creates and returns
`web.XMLDocument`.

`var doc = document.implementation.createDocument(namespaceURI, qualifiedNameStr, documentType);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createDocument`
sourceraw docstring

create-document-typecljs

(create-document-type this qualified-name-str public-id system-id)

Method.

The DOMImplementation.createDocumentType() method returns a web.DocumentType which can either be used with DOMImplementation.createDocument document creation or can be put into the document via methods Node.insertBefore() or Node.replaceChild().

var doctype = document.implementation.createDocumentType(qualifiedNameStr, publicId, systemId);

See also: https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createDocumentType

Method.

The DOMImplementation.createDocumentType() method returns a `web.DocumentType`
which can either be used with `DOMImplementation.createDocument`
document creation or can be put into the document via methods
`Node.insertBefore()` or `Node.replaceChild()`.

`var doctype = document.implementation.createDocumentType(qualifiedNameStr, publicId, systemId);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createDocumentType`
sourceraw docstring

create-html-documentcljs

(create-html-document this title)

Method.

The DOMImplementation.createHTMLDocument() method creates a new web.Document.

newDoc = document.implementation.createHTMLDocument(title);

See also: https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createHTMLDocument

Method.

The DOMImplementation.createHTMLDocument() method creates a new
`web.Document`.

`newDoc = document.implementation.createHTMLDocument(title);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createHTMLDocument`
sourceraw docstring

has-featurecljs

(has-feature this feature version)

Method.

[Deprecated]

The DOMImplementation.hasFeature() method returns a js.Boolean indicating if a given feature is supported. It is deprecated modern browsers return true in all cases.

flag = document.implementation.hasFeature(feature, version);

See also: https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/hasFeature

Method.

[Deprecated]

The DOMImplementation.hasFeature() method returns a `js.Boolean`
indicating if a given feature is supported. It is deprecated
modern browsers return true in all cases.

`flag = document.implementation.hasFeature(feature, version);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/hasFeature`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close