Skip to content

Commit 8a644a2

Browse files
author
rstaib
committed
Add small fix for an example
1 parent de31f8a commit 8a644a2

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,14 @@ There are two ways to add steps and their corresponding content.
4949
2. Or use the API to add steps dynamically.
5050

5151
```javascript
52-
<script>
53-
// Initialize wizard
54-
var wizard = $("#wizard").steps();
55-
56-
// Add step
57-
wizard.steps("add", {
58-
title: "HTML code",
59-
content: "<strong>HTML code</strong>"
60-
});
61-
</script>
52+
// Initialize wizard
53+
var wizard = $("#wizard").steps();
54+
55+
// Add step
56+
wizard.steps("add", {
57+
title: "HTML code",
58+
content: "<strong>HTML code</strong>"
59+
});
6260
```
6361

6462
## License

0 commit comments

Comments
 (0)