AKor
AKor

Reputation: 8882

jQuery back to last page

I have a multi-page form, and I'm trying to implement "Back" buttons, so that the form will go back, just the same behavior as the browser's back button, and still retain everything in the fields, rather than clearing them. How can I do this?

Upvotes: 0

Views: 908

Answers (2)

Beez
Beez

Reputation: 2101

Perhaps this discussion/solution offers a solution for you: https://superuser.com/questions/269394/ie7-doesnt-retain-form-input-when-back-button-is-used

Upvotes: 0

Naftali
Naftali

Reputation: 146310

window.history(-1); //plain ol' javascript

Upvotes: 4

Related Questions