Introduction

Welcome to Tagly Documentation. Tagly is just a simple HTML input tag built on the power of Javascript. I don't have a long description of this library, so get straight to the point.

Simple Usage

To use this library, you can directly download this repository and embed minified javascript file from dist folder to your page. Please see example bellow:

<!DOCTYPE html>
<html lang="en">
    <body>
        <form>
            <div id="tagly"></div>
            <button type="submit">Submit</button>
        </form>

        <script src="path/to/tagly.min.js"></script>
        <script>
            new Tagly(document.querySelector('div#tagly'))
        </script>
    </body>
</html>

Last updated