$(document).ready(function() { var template = $('#app-template').html(), appEl = $('.app'); $.simpleWeather({ location: 'sao paulo', unit: 'c', success: function(weather) { var rendered = Mustache.render(template, weather); appEl.html(rendered); }}); });