html4-id
v1.0.0
Published
Create a valid HTML4 ID from an input value.
Downloads
36,101
Readme
html4-id
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.