$(document).on('turbolinks:load', function() { var grid = $('#tag-grid'); if ($.isController('external_users') && grid.isPresent()) { var spinner = $('#loading'); var noElements = $('#no-elements'); var buildTagContainer = function(tag) { return '\ \
\
' + tag.key + '
\
\
' + tag.value + '%
\
\
\
'; }; var jqxhr = $.ajax('//' + location.host + location.pathname + '/tag_statistics', { dataType: 'json', method: 'GET' }); jqxhr.done(function(response) { spinner.hide(); if (response.length === 0) { noElements.show(); } else { var elements = response.map(buildTagContainer); grid.append(elements); } }); } });