1.0.0 • Published 8 years ago

html4-id v1.0.0

Weekly downloads
21,584
License
MIT
Repository
github
Last release
8 years ago

html4-id

npm Downloads Node.js Version Build Status Coverage Status bitHound Dependencies bitHound Dev Dependencies bitHound Code

Create a valid HTML4 ID from an input value.

Install

NPM

$ npm install html4-id

Node.js

var idify = require('html4-id');

idify('This is a test!'); // Returns "this-is-a-test"

Browser

<script src="node_modules/html4-id/dist/html4-id.min.js"></script>

<div id="{{idify('This is a test!'}}"></div> <!-- Has the ID "this-is-a-test" -->

idify(string)

Removes invalid characters and generates an id meant to be used for HTML elements. See MDN for the note about invalid characters.

License

MIT