$(function () { $('#help').click(showHelp); $(function () { $('[data-toggle="tooltip"]').tooltip() }) }); function showHelp(e) { target = $(e.target); route = target.data('route'); // $('#helpBody').html(''); $('#helpTitle').html('Please hold...'); $('#helpModal').modal('show'); $.getJSON('help/' + encodeURI(route)).success(function (data) { $('#helpBody').html(data.text); $('#helpTitle').html(data.title); }).fail(function () { $('#helpBody').html('
No help text could be found.
'); $('#helpTitle').html('Sorry...'); }); return false; }