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

Popular posts from this blog

Why can rails not find a route created by a helper? -

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -