Library to manipulate DOM elements
Example:
var dom = require('dom-tree')
dom.add(document.body, '<h1>{title}</h1>{content}', {
title: 'Hello',
content: 'Welcome!'
})
$ npm install dom-tree
Adds child
to el
add(document.body, document.createElement('textarea'))
add('body .content', document.createElement('textarea'))
add('.content', '<div>hello</div>')
add('.content', '<h1>{title}</h1>', { title: 'Hello!' })
Similar to addBefore
addBefore(document.body, document.createElement('textarea'), document.body.firstChild)
addBefore('body', '<h1>{msg}</h1>', { msg: 'foobar' }, document.body.firstChild)
insert element
to parent
as child
insert(document.createElement('textarea'), document.body)
insert('<input />', '.content')
insert('<h1>{title}</h1>', { title: 'hello' }, '.content')
replace target
with replacement
replace(document.body, document.body.firstChild, document.createElement('textarea'))
replace('body .content', '.content ul', '<h1>hello</h1>')
replace('body .content', '.content ul', '<h1>{msg}</h1>', { msg: 'hello!' })
remove element
remove(document.body.firstChild)
remove('body .content')
remove child
remove(document.body.firstChild, 'h1')