$(document).ready(function() { var template = $.get('../templates/article.mustache'); $.getJSON('../js/article.json', function(view) { var html = Mustache.to_html(template, view); $("#content").append(html); }); });