javascript - Backbone js capitalise first letter of words -
i picking results views , showing them in templates this,
<% users.each(function(user){ %> <tr> <td class="center"> <label> <input type="checkbox" class="ace" /> <span class="lbl"></span> </label> </td> <td> <%= user.get("first_name") %> <% }); %> how can have <%= user.get("first_name") %> capitalised in rails titleize method in rails.
is css options? f.e.
td { text-transform:capitalize; }
Comments
Post a Comment