Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
javascript
javascript
$(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 Image Removed

...