Module

DOM.Simple.Document

Package
purescript-dom-simple
Repository
garganscript/purescript-dom-simple

#document Source

document :: Document

The global document. Will be undefined on node.

#createElement Source

createElement :: String -> Element

Creates a new DOM element of the given tag using the global document

#createElement' Source

createElement' :: Document -> String -> Element

Creates a new DOM element of the given tag using the provided document

#createTextNode Source