up vote 2 down vote favorite
share [g+] share [fb]

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

link|improve this question

59% accept rate
feedback

3 Answers

up vote 3 down vote accepted
link_to_function "Back", "history.back()"
link|improve this answer
feedback

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|improve this answer
1  
It doesn't work 'exactly' like a Back button. All the inputted form data is cleared. – alamodey Mar 7 '09 at 1:04
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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