I have used the Vertical Form Step from the below Jquery steps
http://www.jquery-steps.com/Examples
It's working fine. Now I want to show the progress bar with validation when I click the next button without bootstrap. Can anyone please help to make this?
The code I have done so far,
$("#example-vertical").steps({
headerTag: "h3",
bodyTag: "section",
transitionEffect: "slideLeft",
stepsOrientation: "vertical"
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="example-vertical">
<h3>Keyboard</h3>
<div id="myProgress">
<div id="myBar">50%</div>
</div>
<section>
<p>Try the keyboard navigation by clicking arrow left or right!</p>
</section>
<h3>Effects</h3>
<section>
<p>Wonderful transition effects.</p>
</section>
<h3>Pager</h3>
<section>
<p>The next and previous buttons help you to navigate through your content.</p>
</section>
</div>
Check now