Stephan-v
Stephan-v

Reputation: 20297

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.

Upvotes: 0

Views: 293

Answers (1)

Muhammad Haseeb Khan
Muhammad Haseeb Khan

Reputation: 895

JS CODE

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

Please View a very simple example FormToWizard

Upvotes: 1

Related Questions