vote up 0 vote down star

Can the 'Back' browser functionality be invoked from a Rails 'Back' link?

flag

61% accept rate

3 Answers

vote up 1 vote down check
link_to_function "Back", "history.back()"
link|flag
vote up 0 vote down

You can use link_to("Hello", :back) to generate <a href="javascript:history.back()">Hello</a>.

link|flag
vote up 4 vote down

Use

<%= link_to 'Back', :back %>

This is specificied in the RDoc here

This generates some Javascript to navigate backward. I've just tested it, and it works.

link|flag
It doesn't work 'exactly' like a Back button. All the inputted form data is cleared. – alamodey Mar 7 at 1:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.