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
- Host: GitHub
- URL: https://github.com/diazvictor/vanilla-js-wizard
- Owner: diazvictor
- Created: 2024-04-12T19:08:42.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-12T19:21:04.000Z (about 1 year ago)
- Last Synced: 2024-12-29T16:44:59.194Z (5 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```
Initialize the wizard```js
let wizard = new Wizard(".wizard");
wizard.init();
```