0.1.13 • Published 2 years ago

@noknow/dom v0.1.13

Weekly downloads
-
License
MIT
Repository
github
Last release
2 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

2 years ago

0.1.11

2 years ago

0.1.12

2 years ago

0.1.13

2 years ago

0.1.8

2 years ago

0.1.7

2 years ago

0.1.9

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

1.0.0

2 years ago