HI I am working on a rails application. I want to implement user tagging as facebook or twitter does. When user is posting in feed he can tag any user with @ character at starting.
I am using Jquery UI Autocomplete plugin.
I have this reference Implementing jquery UI autocomplete to show suggestions when you type "@" which helped me to implement auto complete part.
But now I want to link that auto completed username to users profile url e.g Username = Mak then link should be generated like
<a href="http://www.example.com/username">Username</a>
So please guide me how can I implement this in my rails application?Is there any gem to do so.