Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 429315
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T19:45:47+00:00 2026-05-12T19:45:47+00:00

I am looking for the best solution to create a 3 step sign up

  • 0

I am looking for the best solution to create a 3 step sign up process on 1 page. I am currently using jquery cycle, and the techniques being used in version 1.3.2 do not work when telling it to slide, it seems to work only in 1.3.1, there is also a issue of the size, slide 3 is much longer than slide 1 and the height it generates is too tall with dead space.

Does anyone know of a simple jquery solution? Can the UI tabs work in this case?

This is what I am currently using

I would like to find a shorter way to do somethings and and perhaps not use cycle.

$('#signup-content').cycle({fx: 'scrollHorz', timeout: 0, speed: 300, after: onComp, startingSlide:0});
    $("#createAccount").validate({
        meta: "validate",
        errorElement: "em",
                errorClass: "error",
        validClass: "success",
        highlight: function(element, errorClass, validClass) {
            $(element).closest("div.required").removeClass(validClass);
            $(element).closest("div.required").addClass(errorClass);
            $(element).addClass(errorClass);
        },
        unhighlight: function(element, errorClass, validClass) {
            $(element).closest("div.required").removeClass(errorClass);
            $(element).closest("div.required").addClass(validClass);
            $(element).removeClass(errorClass);
        },
        errorPlacement: function(error, element) {
            if (element.attr("name") == "month"
                 || element.attr("name") == "day"
                    || element.attr("name") == "year" )
             error.insertAfter("#year");
            else
            error.addClass("hide");
        },
        debug:true,

        groups: {

            birthday: "month day year"
        },

        rules: {

            firstname:{required:true},
            lastname:{required:true},
            email: {required: true, email: true},
            confirm_email: {required: true, equalTo: "#email"},
            password:{required: true},
            confirm_password:{required: true,equalTo: "#password"},
            zipcode: {required:true, min:5},
            month:{required:true},
            day:{required:true},
            year:{required:true},
            gender:{required:true},
            agree:{required:true}

        },
        messages: {
        month: {
            required: "Month Is Missing"
        },
        day: {
            required: "Day Is Missing"
        },
        year: {
            required: "Year Is Missing"
        }

        },


         submitHandler: function(form) {
            $(form).ajaxSubmit({
             beforeSubmit:  showRequest,
             success: showResponse
            });
   }
})

function showRequest(formData, jqForm, options) {
    // formData is an array; here we use $.param to convert it to a string to display it
    // but the form plugin does this for you automatically when it submits the data
    var queryString = $.param(formData);

    // jqForm is a jQuery object encapsulating the form element.  To access the
    // DOM element for the form do this:
    // var formElement = jqForm[0];


    alert('About to submit: \n\n' + queryString);

    // here we could return false to prevent the form from being submitted;
    // returning anything other than false will allow the form submit to continue
    return true;
}


function showResponse(formData) {

    $('#signup-content').cycle(1);
    $('html, body').animate({scrollTop: '0px'}, 300);
    $('#message-container').addClass("notice").append('<h3>Your Account Has Been Created!</h3><a href="javascript:;" id="close"><img src="/assets/images/close.png" alt="Close" title="Close"/></a>');
    $('#message-container').fadeIn(1200, function(){
    $('#close').click(function(){
        $('#message-container').fadeOut(1200);

    });

    });
    return false;

}

     $('#goback-step2').click(function(){
          $('#signup-content').cycle(1);
         $('html, body').animate({scrollTop: '0px'}, 300);
         return false;
     });
     $('#goto-step3').click(function(){
          $('#signup-content').cycle(2);
          $('html, body').animate({scrollTop: '0px'}, 300);
          return false;
     });

     function onComp(curr, next, opts){
          var index = opts.currSlide;
          if (index == 0){
               $('#step1').removeClass('complete');
               $('#step1').addClass('active').siblings('li').removeClass('active').addClass('inactive');
          }
          else if (index == 1){
               $('#step1').addClass('complete');
               $('#step2').removeClass('complete');
               $('#step2').addClass('active');
               $('#step3').removeClass('active').addClass('inactive');
          }
          else if (index == 2){
               $('#step2').addClass('complete');
               $('#step3').addClass('active').removeClass('inactive');
          }
     }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T19:45:48+00:00Added an answer on May 12, 2026 at 7:45 pm

    You could use show()/hide() or fadeIn()/fadeOut() combinations with three separate DIV containers for the different form sections.

    You could then have a button in each section bound to perform a fade-out/fade-in for the next section:

    <div id="section1">
      <!-- form here -->
      <a href="#" id="step2">step2</a>
    </div>
    <div id="section2" style="display:none">
      <!-- drag drop here -->
      <a href="#" id="step2">step2</a>
    </div>
    <div id="section3" style="display:none">
      <!-- search here -->
    </div>
    

    jquery:

    $(function() {
      $('#step2').click(function() {
        $('#section1').fadeOut(function() {
          $('#section2').fadeIn();
        });
        return false;
      });
    
      $('#step3').click(function() {
        $('#section2').fadeOut(function() {
          $('#section3').fadeIn();
        });
        return false;
      });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking for the best solution to store Java EE application's global data using
I'm looking for best practices for using the same data in different places without
I'm just looking for best practice reassurance on working with jQuery and ASP.Net, before
I am currently trying to figure out the best way to create a .xls
I am looking for the best solution for custom file parsing for our enterprise
I'm looking for a best solution how to do this. What I have: //
I am a PHP software developer and am looking for the best solution to
I'm looking for a best practice solution.... I have table that holds products called
I am looking for the best way to create ajax enabled subforms from items
As the title suggests it, I`m looking for the best solution for creating a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.