PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

delete previous button on multipage form ??

  1. cuddysteph
    Member

    how can i delete the button previous on multi page form ?

    Posted 11 years ago on Tuesday April 16, 2013 | Permalink
  2. Richard Vav
    Administrator

    You can't delete the previous button but you can hide it using CSS

    body .gform_wrapper .gform_body .gform_page_footer .gform_previous_button {
        display:none
    }

    or jQuery

    <script>
    $(document).ready(function(){
         $('.gform_previous_button').hide();
    });
    </script>

    Regards,
    Richard
    --
    Just another member of the community helping out where I can

    Posted 11 years ago on Tuesday April 16, 2013 | Permalink
  3. David Peralty

    I usually suggest people go the CSS route as it is "better". :)

    Posted 11 years ago on Tuesday April 16, 2013 | Permalink
  4. cuddysteph
    Member

    wonderfull thanks

    Posted 11 years ago on Wednesday April 17, 2013 | Permalink

This topic has been resolved and has been closed to new replies.