Right now I have this link in my navbar. But once I moved things into a Rails app is has not worked.
<li><a href="products.html#ultra">Ultra</a></li>
I understand it needs to be changed to
<li><%= link_to "Ultra", product_path %></li>
but I want it to go directly to the Anchor I have set up on the product page. How is this done in Rails?