in my rails app I'm using jQuery BBQ for hashchange deeplinking etc...
Here are my existing links in rails:
<%= link_to('View on Site ', project_topic_url(@project.id, @topic, :only_path => false),) %>
I have this working in a user_mailer that gets emailed out...
problem is this generated: http://www.site.com/project/1/topic/23
And What I want is: http://www.site.com/#/project/1/topic/23
Any ideas on how I can get the hash # in the url to be ajax, deeplinking friendly?
Thanks