// underscore template loader function _tpl(templateName,callback) { var tmpl_url = '_tlp-' + templateName + '.html'; $.ajax({ url: tmpl_url, method: 'GET', async: false, contentType: 'text', success: function (data) { callback(data); } }); } $(document).ready(function(){ var template_data = { 'foo':'bar', 'baz':['apple','bananna','custard'] }; _tpl('dashboard',function(template){ var tpl = _.template(template); $("#container").html(tpl(template_data)); }) })