Reputation: 13942
How add hash parameter to url using redirect_to?
For example:
http://localhost/products/#{page:2}
Upvotes: 7
Views: 4431
Reputation: 1819
Best way to do it will be.
redirect_to :action => :index, :anchor => "order"
Upvotes: 30
Reputation: 649
use something like
redirect_to url_for(:action=>:index)+"#order"
Upvotes: -6