Oksana
Oksana

Reputation: 13942

How add hash parameter to url using redirect_to?

How add hash parameter to url using redirect_to?

For example:

http://localhost/products/#{page:2}

Upvotes: 7

Views: 4431

Answers (2)

CantGetANick
CantGetANick

Reputation: 1819

Best way to do it will be.

 redirect_to :action => :index, :anchor => "order"

Upvotes: 30

Pavel Manylov
Pavel Manylov

Reputation: 649

use something like

redirect_to url_for(:action=>:index)+"#order"

Upvotes: -6

Related Questions