Skip to content
This repository has been archived by the owner on Sep 20, 2019. It is now read-only.

thetrompf/tab-navigation.ts

Repository files navigation

TabNavigation.ts

npm version Build Status Coverage Status

This library ships with an implementation that works with react, but it is not limited to react. Maybe later the react part will be moved to separate library.

Read the docs

Getting started

First add the tab-navigation.ts to your project

npm install @secoya/tab-navigation.ts

or

yarn add @secoya/tab-navigation.ts
<html>
<head>
    <script type="application/javascript" src="//github.com/thetrompf/tab-navigation.ts/blob/latest/dist/umd.js">
</head>
<body>

    <form>
        <p>
            <label for="first-name">First name</label>
            <input type="text" name="first-name" />
        </p>
        <p>
            <label for="last-name">Last name</label>
            <input type="text" name="last-name" />
        </p>
        <p>
            <label for="email">Email</label>
            <input type="email" name="email" />
        </p>
        <p>
            <label for="password">Password</label>
            <input type="password" name="password" />
        </p>
        <p>
            <label for="password">Password</label>
            <input type="password" name="password" />
        </p>
    <form>

</body>
</html>