Been trying to do this for a while now, but it seems all jquery steps/wizard plugins are very limited and was hoping you guys are able to help me out a little.
What i'm trying to do is a very basic 3 steps wizard via jQuery. So at beginning it only shows the .step-active and .content-active at first and then 2 and then 3 where i submit the form.
Here is my HTML:
<div class="steps-wizard">
<div class="step1 step-active">1</div>
<div class="step2">2</div>
<div class="step3">3</div>
</div>
<form id="steps-form">
<div class="steps-content">
<!-- STEP 1 -->
<div class="step1-content content-active">
-- CONTENT --
<a href="#">Next</a>
</div>
<!-- STEP 2 -->
<div class="step2-content">
-- CONTENT --
<a href="#">Next</a>
</div>
<!-- STEP 3 -->
<div class="step3-content">
-- CONTENT --
<input type="submit">Submit</a>
</div>
Any help on this would be very much appreciated as it seems i'm not able to get this working correctly...
Thanks guys!