Case is I have to make a drop down in which i want link. for example
<%= link_to 'Edit', edit_user_path(user) %>, <%= link_to 'Show', edit_user_path(user) %>, <td><%= link_to 'Edit Contact', :action => :edit, :controller => :primary_contacts, :id => xyz %></td>.
Any help??
I think what you relly mean to ask is how to create a drop-down navigation menu — right? There are many ways to do that, and most of them do not involve a
selectelement. Usually, you would use CSS or JavaScript to show an absolute-positioned element containing your list of links when the user hovers over or clicks on the main element.