https://github.com/kossnocorp/html-element-stringify
HTMLElement stringifier
https://github.com/kossnocorp/html-element-stringify
Last synced: 15 days ago
JSON representation
HTMLElement stringifier
- Host: GitHub
- URL: https://github.com/kossnocorp/html-element-stringify
- Owner: kossnocorp
- Created: 2015-08-25T05:26:07.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-26T10:10:15.000Z (over 9 years ago)
- Last Synced: 2025-02-20T01:38:30.894Z (2 months ago)
- Language: JavaScript
- Size: 168 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# html-element-stringify
HTMLElement stringifier.
## Installation
```
npm install html-element-stringify --save
```## Example
``` js
var htmlElementStringify = require('html-element-stringify')var div = document.createElement('div')
div.id = 'test'
div.innerHTML = 'TEST'htmlElementStringify(div)
//=> 'TEST'
```## License
MIT