Inline Links

What is the RoR way of creating inline links i.e. like in FAQs.

ex)
skip to main content

How would someone do it the RoR way for both creating the link and the
place where the link goes to?

Thanks for your help :-).


John K.
[email protected]

http://www.kopanas.com

http://www.soen.info

Hi John,

2006/10/24, John K. [email protected]:

What is the RoR way of creating inline links i.e. like in FAQs.

skip to main content

<%= link_to ‘Kommentare’, :action => ‘show’, :id => code,
:anchor => ‘comment-form’ %>

Beate :slight_smile: