Package | Description |
---|---|
bayou.html |
For building html trees.
|
Modifier and Type | Method and Description |
---|---|
default Html5.SCRIPT |
Html5._script()
Build element
<script> . |
default Html5.SCRIPT |
Html5._script(Object... children)
Build element
<script> with children. |
default Html5.SCRIPT |
Html5._script(Runnable code)
Build element
<script> ; with it as the context parent, run `code`. |
Html5.SCRIPT |
Html5.SCRIPT.async(boolean value)
Set boolean attribute
async . |
Html5.SCRIPT |
Html5.SCRIPT.charset(CharSequence value)
Set attribute
charset="{value}" . |
Html5.SCRIPT |
Html5.SCRIPT.crossorigin(CharSequence value)
Set attribute
crossorigin="{value}" . |
Html5.SCRIPT |
Html5.SCRIPT.defer(boolean value)
Set boolean attribute
defer . |
Html5.SCRIPT |
Html5.SCRIPT.src(CharSequence value)
Set attribute
src="{value}" . |
Html5.SCRIPT |
Html5.SCRIPT.type(CharSequence value)
Set attribute
type="{value}" . |