1.0.1 • Published 11 years ago

element-splice v1.0.1

Weekly downloads
1
License
-
Repository
github
Last release
11 years ago

element-splice

array.splice but for HTMLElement.

var splice = require('element-splice')
var h      = require('hyperscript')

var todo = h('ol')

splice(todo, [
  0, //start at
  0, //delete this many
  h('li', 'get out of bed'), //insert the rest!
  h('li', 'etc...')
])

document.appendChild(todo)

//and then later...

splice(todo, [0, 1]) //delete the first item.

License

MIT

1.0.1

11 years ago

1.0.0

11 years ago