- byClass
auto byClass(string name)
A lazy range of elements filtered by class
- byComment
auto byComment(string comment)
A lazy range of elements filtered by comment text
- byId
Element byId(string id)
- bySelector
auto bySelector(string selector)
A lazy range of elements filtered using a css selector
- byTagName
auto byTagName(string name)
A lazy range of elements filtered by tag name
- createComment
Element createComment(string text)
- createElement
Element createElement(string tagName)
- createText
Element createText(string text)
- fragment
Element fragment(string html)
Create a document fragment from source
- opAssign
auto opAssign(string html)
Undocumented in source. Be warned that the author may not have intended to support it.
- opAssign
auto opAssign(typeof(this) rhs)
Undocumented in source. Be warned that the author may not have intended to support it.
- opAssign
auto opAssign(typeof(null) n)
Undocumented in source. Be warned that the author may not have intended to support it.
- opCast
auto opCast()
Undocumented in source. Be warned that the author may not have intended to support it.
- opEquals
bool opEquals(typeof(null) o)
Undocumented in source. Be warned that the author may not have intended to support it.
- opEquals
bool opEquals(D d)
Undocumented in source. Be warned that the author may not have intended to support it.
- toString
string toString()
Return document as html string
The HTML5 Document