Mini Shell
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>JQuery Form Wizard</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" ></meta>
<link rel="stylesheet" type="text/css" href="./css/ui-lightness/jquery-ui-1.8.2.custom.css" />
<style type="text/css">
#demoWrapper {
padding : 1em;
width : 500px;
border-style: solid;
}
#fieldWrapper {
}
#demoNavigation {
margin-top : 0.5em;
margin-right : 1em;
text-align: right;
}
#data {
font-size : 0.7em;
}
input {
margin-right: 0.1em;
margin-bottom: 0.5em;
}
.input_field_25em {
width: 2.5em;
}
.input_field_3em {
width: 3em;
}
.input_field_35em {
width: 3.5em;
}
.input_field_12em {
width: 12em;
}
label {
margin-bottom: 0.2em;
font-weight: bold;
font-size: 0.8em;
}
label.error {
color: red;
font-size: 0.8em;
margin-left : 0.5em;
}
.step span {
font-weight: bold;
padding-right: 0.8em;
}
.navigation_button {
width : 70px;
}
#data {
overflow : auto;
}
</style>
</head>
<body>
<div id="demoWrapper">
<h3>Example of a straight wizard</h3>
<ul>
<li>Straight wizard with three steps.</li>
<li>Validation plugin enabled for the email field on the second step.</li>
<li>Form plugin enabled and beforeSubmit and success callbacks are used.</li>
</ul>
<hr />
<h5 id="status"></h5>
<form id="demoForm" method="post" action="json.html" class="bbq">
<div id="state"></div>
<div id="fieldWrapper">
<div class="step" id="first">
<span class="font_normal_07em_black">First step - Name</span><br />
<label for="firstname">First name</label><br />
<input class="input_field_12em" name="firstname" id="firstname" /><br />
<label for="surname">Surname</label><br />
<input class="input_field_12em" name="surname" id="surname" /><br />
</div>
<div id="finland" class="step">
<span class="font_normal_07em_black">Step 2 - Personal information</span><br />
<label for="day_fi">Social Security Number</label><br />
<input class="input_field_25em" name="day" id="day_fi" value="DD" />
<input class="input_field_25em" name="month" id="month_fi" value="MM" />
<input class="input_field_3em" name="year" id="year_fi" value="YYYY" /> -
<input class="input_field_3em" name="lastFour" id="lastFour_fi" value="XXXX" /><br />
<label for="countryPrefix_fi">Phone number</label><br />
<input class="input_field_35em" name="countryPrefix" id="countryPrefix_fi" value="+358" /> -
<input class="input_field_3em" name="areaCode" id="areaCode_fi" /> -
<input class="input_field_12em" name="phoneNumber" id="phoneNumber_fi" /><br />
<label for="email">*Email</label><br />
<input class="input_field_12em email required" name="myemail" id="myemail" /><br />
</div>
<div id="confirmation" class="step submit_step">
<span class="font_normal_07em_black">Last step - Username</span><br />
<label for="username">User name</label><br />
<input class="input_field_12em" name="username" id="username" /><br />
<label for="password">Password</label><br />
<input class="input_field_12em" name="password" id="password" type="password" /><br />
<label for="retypePassword">Retype password</label><br />
<input class="input_field_12em" name="retypePassword" id="retypePassword" type="password" /><br />
</div>
<div class="step" id="details">
<span class="font_normal_07em_black">Hidden step</span><br />
<span>This step is not possible to see without using the show method</span>
</div>
</div>
<div id="demoNavigation">
<input class="navigation_button" id="back" value="Reset" type="reset" />
<input class="navigation_button" id="next" value="Submit" type="submit" />
</div>
</form>
<hr />
<input type="button" id="reset_wizard" value="Reset wizard"/>
<input type="button" id="move_next" value="Move to next step"/>
<input type="button" id="move_back" value="Go back one step"/>
<input type="button" id="update_steps" value="Add a step after the second step and update the cached steps of the wizard"/>
<input type="button" id="show_step" value="Show step"/>
<input type="button" id="destroy" value="remove formwizard functionality from the form"/>
<input type="button" id="get_state" value="Get the state of the wizard"/>
<p id="data"></p>
</div>
<script type="text/javascript" src="../js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="../js/jquery.form.js"></script>
<script type="text/javascript" src="../js/jquery.validate.js"></script>
<script type="text/javascript" src="../js/bbq.js"></script>
<script type="text/javascript" src="../js/jquery-ui-1.8.5.custom.min.js"></script>
<script type="text/javascript" src="../js/jquery.form.wizard.js"></script>
<script type="text/javascript">
$(function(){
//reset the wizard when clicking the reset_wizard button
$("#reset_wizard").click(function(){
$("#demoForm").formwizard("reset");
});
//move to the next step in the wizard (programmatically)
$("#move_next").click(function(){
$("#demoForm").formwizard("next");
});
//move back one step in the wizard (programmatically)
$("#move_back").click(function(){
$("#demoForm").formwizard("back");
});
//update cached steps in the wizard with a new step (adds one first)
$("#update_steps").click(function(){
$("#finland").after("<div class=\"step\" id=\"added_step\">New step added in the update steps callback</div>")
$("#demoForm").formwizard("update_steps");
});
//Show specific step (programmatically)
$("#show_step").click(function(){
$("#demoForm").formwizard("show", "details");
});
// Show some data from the current state of the wizard
$("#get_state").click(function(){
var state = $("#demoForm").formwizard("state");
var steps = "";
state.steps.each(function(){
steps += $(this).attr("id") + ", ";
});
$("#state").html("Currently cached steps: " + steps);
});
//remove the wizard functionality from the form
$("#destroy").click(function(){
$("#demoForm").formwizard("destroy");
});
$("#demoForm").formwizard({
formPluginEnabled: true,
validationEnabled: true,
focusFirstInput : true,
formOptions :{
success: function(data){$("#status").fadeTo(500,1,function(){ $(this).html("You are now registered!").fadeTo(5000, 0); })},
beforeSubmit: function(data){$("#data").html("data sent to the server: " + $.param(data));},
dataType: 'json',
resetForm: true
}
}
);
});
</script>
</body>
</html>
Zerion Mini Shell 1.0