Module
Web.DOM.Document  
- Package
- purescript-web-dom
- Repository
- purescript-web/purescript-web-dom
This module provides type definitions and implementations for the
Document interface, which is part of the W3C DOM API.
The DOM API doesn't actually give you any way of getting hold of a
Document by itself. To do that, you will need to look at one of the
other APIs which build on the DOM API. For example, window.document is
part of the HTML5 API, and so the relevant binding can be found in
Web.HTML.Window, which is part of the purescript-web-html package.
#toParentNode Source
toParentNode :: Document -> ParentNode#toEventTarget Source
toEventTarget :: Document -> EventTarget#getElementsByTagNameNS Source
getElementsByTagNameNS :: Maybe String -> String -> Document -> Effect HTMLCollection- Modules
- Web.DOM 
- Web.DOM. CharacterData 
- Web.DOM. ChildNode 
- Web.DOM. Comment 
- Web.DOM. DOMTokenList 
- Web.DOM. Document 
- Web.DOM. DocumentFragment 
- Web.DOM. DocumentType 
- Web.DOM. Element 
- Web.DOM. HTMLCollection 
- Web.DOM. Internal. Types 
- Web.DOM. MutationObserver 
- Web.DOM. MutationRecord 
- Web.DOM. Node 
- Web.DOM. NodeList 
- Web.DOM. NodeType 
- Web.DOM. NonDocumentTypeChildNode 
- Web.DOM. NonElementParentNode 
- Web.DOM. ParentNode 
- Web.DOM. ProcessingInstruction 
- Web.DOM. ShadowRoot 
- Web.DOM. Text