An open API service indexing awesome lists of open source software.

https://github.com/danielrohers/dom

Plugin for DOM manipulation
https://github.com/danielrohers/dom

Last synced: 9 months ago
JSON representation

Plugin for DOM manipulation

Awesome Lists containing this project

README

          

# DOM

Plugin for DOM manipulation

#### dom.create(name, properties)
```js
dom.create('input', {
'name': 'name'
});
//
```

#### dom.create(name, properties, assignmentProperties)
```js
dom.create('button', {
'type': 'submit',
}, {
'innerHTML': 'Submit'
});
// Submit
```