html-chain
html-chain copied to clipboard
:link: A super small javascript library to make html by chaining javascript functions
Results
4
html-chain issues
Sort by
recently updated
recently updated
newest added
#### Basic Example ``` js var body = html.add('div'), content = body.add('p') console.log(content.build()) ``` #### Loop Example ``` js var table = html.add('table') for (var i = 0; i <...
bug