Good notes posted by bansalakhil
RSS feed
3 thanks

6 thanks
Anchor tag in link_to
Code example
link_to("some text", articles_path(:anchor => "comment"))
will output <a href = “/articles#comment” >some text

7 thanks

8 thanks
link_to some url with current params
Code example
link_to "some text", users_path(:params => params, :more_params => "more params")