Hello, Currently my links in Rails are using link_to as follows:
<%= link_to project.name, project %> Which makes something like: `<a href="/projects/1">Project 1</a>` I'm working to implement an AJAX app with deep linking so instead of the above, I want the output to be (with a #): `<a href="#/projects/ 1">Project 1</a>` Is there a way to get this to work with link_to? Or do I need some type of custom helper so I can use something like `link_deep_to` Thanks -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-t...@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.