Form Wizard and validation
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="stepwizard">
<div class="stepwizard-row setup-panel">
<div class="stepwizard-step">
<a href="#step-1" type="button" class="btn btn-primary btn-circle">1</a>
<p>Step 1</p>
</div>
<div class="stepwizard-step">
<a href="#step-2" type="button" class="btn btn-default btn-circle" disabled="disabled">2</a>
<p>Step 2</p>
</div>
<div class="stepwizard-step">
<a href="#step-3" type="button" class="btn btn-default btn-circle" disabled="disabled">3</a>
<p>Step 3</p>
</div>
</div>
</div>
<form role="form">
<div class="row setup-content" id="step-1">
<div class="col-xs-12">
<div class="col-md-12">
<h3> Step 1</h3>
<div class="form-group">
<label class="control-label">First Name</label>
<input maxlength="100" type="text" required="required" class="form-control" placeholder="Enter First Name" />
</div>
<div class="form-group">
<label class="control-label">Last Name</label>
<input maxlength="100" type="text" required="required" class="form-control" placeholder="Enter Last Name" />
</div>
<button class="btn btn-primary nextBtn btn-lg pull-right" type="button" >Next</button>
</div>
</div>
</div>
<div class="row setup-content" id="step-2">
<div class="col-xs-12">
<div class="col-md-12">
<h3> Step 2</h3>
<div class="form-group">
<label class="control-label">Company Name</label>
<input maxlength="200" type="text" required="required" class="form-control" placeholder="Enter Company Name" />
</div>
<div class="form-group">
<label class="control-label">Company Address</label>
<input maxlength="200" type="text" required="required" class="form-control" placeholder="Enter Company Address" />
</div>
<button class="btn btn-primary nextBtn btn-lg pull-right" type="button" >Next</button>
</div>
</div>
</div>
<div class="row setup-content" id="step-3">
<div class="col-xs-12">
<div class="col-md-12">
<h3> Step 3</h3>
<button class="btn btn-success btn-lg pull-right" type="submit">Finish!</button>
</div>
</div>
</div>
</form>
</div>
body{
margin-top:40px;
}
.stepwizard-step p {
margin-top: 10px;
}
.stepwizard-row {
display: table-row;
}
.stepwizard {
display: table;
width: 100%;
position: relative;
}
.stepwizard-step button[disabled] {
opacity: 1 !important;
filter: alpha(opacity=100) !important;
}
.stepwizard-row:before {
top: 14px;
bottom: 0;
position: absolute;
content: " ";
width: 100%;
height: 1px;
background-color: #ccc;
z-order: 0;
}
.stepwizard-step {
display: table-cell;
text-align: center;
position: relative;
}
.btn-circle {
width: 30px;
height: 30px;
text-align: center;
padding: 6px 0;
font-size: 12px;
line-height: 1.428571429;
border-radius: 15px;
}
Could someone help me incorporate a previous button on this? It would help quite a bit,How to reset this form?,how to validate a drop down ?,how to make this form stay in div #step-3 after refresh/post,how to validate email?,how to validate a dropdown? since it doesn’t has input tag.,just simply add the word select on curInputs of the allNextBtn.click function:,example:, allNextBtn.click(function(){ var curStep = $(this).closest(“.setup-content”), curStepBtn = curStep.attr(“id”), nextStepWizard = $(‘div.setup-panel div a[href=”#’ + curStepBtn + ‘”]’).parent().next().children(“a”), curInputs = curStep.find(“input[type=’text’],input[type=’url’],select”), isValid = true;, $(“.form-group”).removeClass(“has-error”); for(var i=0; i<curinputs.length; i++){=”” if=”” (!curinputs[i].validity.valid){=”” isvalid=”false;” $(curinputs[i]).closest(“.form-group”).addclass(“has-error”);=”” }=”” }=”” if=”” (isvalid)=”” nextstepwizard.removeattr(‘disabled’).trigger(‘click’);=”” });=””>,That doesn’t work on its own. You need to also replace this if=(!curinputs[i].validity.valid)with if (!curInputs[i].validity.valid || curInputs[i].selectedIndex == 0 )That tests if the dropdown is blank,It gets an error in IE9! In line 31 var curInputs can’t be recognized…Any solution?,How could I remove the error message: “please fill out this field” when I press the enter key?,i’m getting the step buttons vertically.. what would be the problem???,how do i prevent the “<” symbol from being replaced by “& lt;” in the javascript so that the sections do not all appear on 1 page?,i can’t find the way to make a button go to a particular step (in a different file). is that possible? any ideas? thanks !,This really needs a back button,for PrevButton,—-,add var allPrevBtn = $(‘.prevBtn’);,and this,allPrevBtn.click(function(){, var curStep = $(this).closest(“.setup-content”),, curStepBtn = curStep.attr(“id”),, prevStepWizard = $(‘div.setup-panel div a[href=”#’ + curStepBtn + ‘”]’).parent().prev().children(“a”);, prevStepWizard.removeAttr(‘disabled’).trigger(‘click’);, });,Any chance for a back button?,yes its very nice and time saving for me.great :),The author is omri-shaiko

Loading...