I am making a multi-page form using http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/. I want to include a confirmation page at the end that shows the other information (name, e-mail, etc.) as it was typed in without reloading the page. In essence, I want to show what the user typed in on another part of the page. I assume this would use jQuery. How can I do this?
I am making a multi-page form using http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/ . I want to include a
Share
You do it this way :
Assume this is the First Step :
Your Confirmation Step should look like this
And place this JQuery code on any part of the page
So basically what it did is to catch any keyup event on any textbox, check for an element with an ID of the related text box “plus” _confirmation. Let’s say you’re typing on username textbox, on every keyup it’ll look for element of “username_confirmation” and change the content of “username_confirmation” into the same value of “username”