An open API service indexing awesome lists of open source software.

https://github.com/diazvictor/vanilla-js-wizard

A simple Wizard with vanilla js
https://github.com/diazvictor/vanilla-js-wizard

Last synced: 4 months ago
JSON representation

A simple Wizard with vanilla js

Awesome Lists containing this project

README

        

# vanilla-js-wizard
A simple Wizard with vanilla js

## Usage

HTML Structure
```html



Step 1 Content

Step 2 Content

Step 3 Content


Previous
Next


```
Initialize the wizard

```js
let wizard = new Wizard(".wizard");
wizard.init();
```