0.1.13 • Published 3 years ago

@noknow/dom v0.1.13

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

noknow-dom

Install

npm install @noknow/dom

Usage

Example 1

<ul>
  <li><p>Hello</p></li>
  <li><p class="noknow love">World</p></li>
</ul>
const helloP = NkwDom.
    NewHtmlElement('P').
    SetContentList(['Hello']).
    GetHtmlElement();
const helloLi = NkwDom.
    NewHtmlElement('LI').
    SetContentList([helloP]).
    GetHtmlElement();
cosnt worldP = NkwDom.
    NewHtmlElement('P').
    SetClassList(['noknow', 'love']).
    SetContentList(['World']).
    GetHtmlElement();
const worldLi = NkwDom.
    NewHtmlElement('LI').
    SetContentList([worldLi]).
    GetHtmlElement();
const ul = NkwDom.
    NewHtmlElement('UL').
    SetContentList([helloLi, worldLi]).
    GetHtmlElement();
0.1.10

4 years ago

0.1.11

4 years ago

0.1.12

4 years ago

0.1.13

3 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.9

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

1.0.0

4 years ago