I have the following:
commentable.id =3131
In the partial:
<%=f.text_area :content, :id=> 'comment_content_' commentable.id %>
I want it to make:
<textarea id="comment_content_3131" />
How do I combine the string with a variable in the partial? Thanks