table#products-table.table.table-striped.table-hover tbody - content_for :footer do javascript: jQuery(function(){ $.get('#{product_list_supplier_path(@supplier, format: :json).html_safe}', function(res){ window.products = res body = $('#products-table tbody') for(category in window.products){ body.append('

'+category+'

') for(iproduct in window.products[category]){ body.append(''+window.products[category][iproduct].name+'') } } }) })