Search code examples
javascriptjqueryformsinputmulti-step

Getting jquery multistep working


I'm trying to make a multistep form with jquery using this:

https://github.com/sheadawson/jquery.multistep

But so far I can't seem to get it working properly because it doesn't hide the other steps, can anyone provide me with an example on how to properly use this? I seem to be doing something wrong here.


Solution

  • JS CODE

    $(document).ready(function(){
    $("#SignupForm").formToWizard({ submitButton: 'SaveAccount' })
            $("#makeWizard").hide();
            $("#info").fadeIn(400);
    });    
    

    Please View a very simple example FormToWizard