...
Code Block | ||||
---|---|---|---|---|
| ||||
$(function() { $("#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 } }); }); |
Demo with Source Code
- Demo > http://harshadura.github.com/Jquery-Wizard-Test/examples/example_1_straight.html
- Source > https://github.com/harshadura/Jquery-Wizard-Test/blob/gh-pages/examples/example_1_straight.html
...